This commit is contained in:
Gary Gregory 2023-12-14 09:49:01 -05:00
parent 7666870539
commit 3f6d449f51
10 changed files with 17 additions and 17 deletions

View File

@ -302,7 +302,7 @@ public enum JavaVersion {
private final String name; private final String name;
/** /**
* Constructor. * Constructs a new instance.
* *
* @param value the float value * @param value the float value
* @param name the standard name, not null * @param name the standard name, not null

View File

@ -80,7 +80,7 @@ public class SerializationUtils {
private final ClassLoader classLoader; private final ClassLoader classLoader;
/** /**
* Constructor. * Constructs a new instance.
* @param in The {@link InputStream}. * @param in The {@link InputStream}.
* @param classLoader classloader to use * @param classLoader classloader to use
* @throws IOException if an I/O error occurs while reading stream header. * @throws IOException if an I/O error occurs while reading stream header.

View File

@ -1248,7 +1248,7 @@ public class Validate {
} }
/** /**
* Constructor. This class should not normally be instantiated. * Constructs a new instance. This class should not normally be instantiated.
*/ */
public Validate() { public Validate() {
} }

View File

@ -76,7 +76,7 @@ public class MultilineRecursiveToStringStyle extends RecursiveToStringStyle {
private int spaces = 2; private int spaces = 2;
/** /**
* Constructor. * Constructs a new instance.
*/ */
public MultilineRecursiveToStringStyle() { public MultilineRecursiveToStringStyle() {
resetIndent(); resetIndent();

View File

@ -60,7 +60,7 @@ public class RecursiveToStringStyle extends ToStringStyle {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
*/ */
public RecursiveToStringStyle() { public RecursiveToStringStyle() {
} }

View File

@ -41,7 +41,7 @@ public class StandardToStringStyle extends ToStringStyle {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
*/ */
public StandardToStringStyle() { public StandardToStringStyle() {
} }

View File

@ -84,7 +84,7 @@ public abstract class ToStringStyle implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
@ -120,7 +120,7 @@ public abstract class ToStringStyle implements Serializable {
private static final String FIELD_NAME_QUOTE = "\""; private static final String FIELD_NAME_QUOTE = "\"";
/** /**
* Constructor. * Constructs a new instance.
* *
* <p> * <p>
* Use the static constant rather than instantiating. * Use the static constant rather than instantiating.
@ -440,7 +440,7 @@ public abstract class ToStringStyle implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
@ -474,7 +474,7 @@ public abstract class ToStringStyle implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
@ -506,7 +506,7 @@ public abstract class ToStringStyle implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
@ -537,7 +537,7 @@ public abstract class ToStringStyle implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
@ -568,7 +568,7 @@ public abstract class ToStringStyle implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Constructor. * Constructs a new instance.
* *
* <p>Use the static constant rather than instantiating.</p> * <p>Use the static constant rather than instantiating.</p>
*/ */
@ -864,7 +864,7 @@ public abstract class ToStringStyle implements Serializable {
private String summaryObjectEndText = ">"; private String summaryObjectEndText = ">";
/** /**
* Constructor. * Constructs a new instance.
*/ */
protected ToStringStyle() { protected ToStringStyle() {
} }

View File

@ -149,7 +149,7 @@ public abstract class StrLookup<V> {
} }
/** /**
* Constructor. * Constructs a new instance.
*/ */
protected StrLookup() { protected StrLookup() {
} }

View File

@ -374,7 +374,7 @@ public abstract class StrMatcher {
} }
/** /**
* Constructor. * Constructs a new instance.
*/ */
protected StrMatcher() { protected StrMatcher() {
} }

View File

@ -233,7 +233,7 @@ public class StopWatch {
private long stopTimeNanos; private long stopTimeNanos;
/** /**
* Constructor. * Constructs a new instance.
*/ */
public StopWatch() { public StopWatch() {
this(null); this(null);