Fix javadoc references.

This commit is contained in:
Adrien Grand 2023-02-07 11:05:39 +01:00
parent 8b572f074e
commit d69326408c
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ public final class DoubleField extends Field {
* @param name field name
* @param value the double value
* @throws IllegalArgumentException if the field name or value is null.
* @deprecated Use {@link #DoubleField(String, int, Field.Store)} with {@link Field.Store#NO}
* @deprecated Use {@link #DoubleField(String, double, Field.Store)} with {@link Field.Store#NO}
* instead.
*/
@Deprecated

View File

@ -65,7 +65,7 @@ public final class FloatField extends Field {
* @param name field name
* @param value the float value
* @throws IllegalArgumentException if the field name or value is null.
* @deprecated Use {@link #FloatField(String, int, Field.Store)} with {@link Field.Store#NO}
* @deprecated Use {@link #FloatField(String, float, Field.Store)} with {@link Field.Store#NO}
* instead.
*/
@Deprecated

View File

@ -70,7 +70,7 @@ public final class LongField extends Field {
* @param name field name
* @param value the long value
* @throws IllegalArgumentException if the field name or value is null.
* @deprecated Use {@link #LongField(String, int, Field.Store)} with {@link Field.Store#NO}
* @deprecated Use {@link #LongField(String, long, Field.Store)} with {@link Field.Store#NO}
* instead.
*/
@Deprecated