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;
/**
* Constructor.
* Constructs a new instance.
*
* @param value the float value
* @param name the standard name, not null

View File

@ -80,7 +80,7 @@ public class SerializationUtils {
private final ClassLoader classLoader;
/**
* Constructor.
* Constructs a new instance.
* @param in The {@link InputStream}.
* @param classLoader classloader to use
* @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() {
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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