Fix broken javadoc. (#938)

This commit is contained in:
Arturo Bernal 2022-08-21 14:57:32 +02:00 committed by GitHub
parent 5fc1f111f8
commit 598f2fb915
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View File

@ -82,7 +82,7 @@ public static class Null implements Serializable {
} }
/** /**
* <p>Ensure singleton.</p> * <p>Ensure Singleton after serialization.</p>
* *
* @return the singleton value * @return the singleton value
*/ */

View File

@ -2064,7 +2064,7 @@ private static final class DefaultToStringStyle extends ToStringStyle {
} }
/** /**
* <p>Ensure {@link Singleton} after serialization.</p> * <p>Ensure Singleton after serialization.</p>
* *
* @return the singleton * @return the singleton
*/ */
@ -2095,7 +2095,7 @@ private static final class NoFieldNameToStringStyle extends ToStringStyle {
} }
/** /**
* <p>Ensure {@link Singleton} after serialization.</p> * <p>Ensure Singleton after serialization.</p>
* *
* @return the singleton * @return the singleton
*/ */
@ -2193,7 +2193,7 @@ private static final class MultiLineToStringStyle extends ToStringStyle {
} }
/** /**
* <p>Ensure {@link Singleton} after serialization.</p> * <p>Ensure Singleton after serialization.</p>
* *
* @return the singleton * @return the singleton
*/ */
@ -2225,7 +2225,7 @@ private static final class NoClassNameToStringStyle extends ToStringStyle {
} }
/** /**
* <p>Ensure {@link Singleton} after serialization.</p> * <p>Ensure Singleton after serialization.</p>
* *
* @return the singleton * @return the singleton
*/ */
@ -2557,7 +2557,7 @@ protected void appendFieldStart(final StringBuffer buffer, final String fieldNam
/** /**
* <p> * <p>
* Ensure {@link Singleton} after serialization. * Ensure Singleton after serialization.
* </p> * </p>
* *
* @return the singleton * @return the singleton

View File

@ -110,7 +110,7 @@ public class BasicThreadFactory implements ThreadFactory {
private final Boolean daemon; private final Boolean daemon;
/** /**
* Creates a new instance of {@link ThreadFactoryImpl} and configures it * Creates a new instance of {@link ThreadFactory} and configures it
* from the specified {@link Builder} object. * from the specified {@link Builder} object.
* *
* @param builder the {@link Builder} object * @param builder the {@link Builder} object

View File

@ -517,7 +517,7 @@ public Fraction abs() {
* <p>The returned fraction is in reduced form.</p> * <p>The returned fraction is in reduced form.</p>
* *
* @param power the power to raise the fraction to * @param power the power to raise the fraction to
* @return {@code this} if the power is one, {@link ONE} if the power * @return {@code this} if the power is one, {@link #ONE} if the power
* is zero (even if the fraction equals ZERO) or a new fraction instance * is zero (even if the fraction equals ZERO) or a new fraction instance
* raised to the appropriate power * raised to the appropriate power
* @throws ArithmeticException if the resulting numerator or denominator exceeds * @throws ArithmeticException if the resulting numerator or denominator exceeds

View File

@ -921,7 +921,7 @@ private static class UnpaddedNumberField implements NumberRule {
private final int mField; private final int mField;
/** /**
* Constructs an instance of {@link UnpadedNumberField} with the specified field. * Constructs an instance of {@link UnpaddedNumberField} with the specified field.
* *
* @param field the field * @param field the field
*/ */