Skip to content

Commit

Permalink
Fix javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
joehni committed Dec 29, 2022
1 parent 7370178 commit 24eef2b
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*
* @author Basil Crow
* @author Jörg Schaible
* @since 1.4.20
*/
public class AtomicBooleanConverter extends BooleanConverter implements Converter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* Converts an AtomicInteger type.
*
* @author Jörg Schaible
* @since 1.4.20
*/
public class AtomicIntegerConverter extends IntConverter implements Converter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* Converts an AtomicLong type.
*
* @author Jörg Schaible
* @since 1.4.20
*/
public class AtomicLongConverter extends LongConverter implements Converter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
/**
* Converts an AtomicReference type.
*
* @author Jörg Schaible
* @since 1.4.20
*/
public class AtomicReferenceConverter implements Converter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
/**
* Converts an Optional type.
*
* @since 1.4.20
* @author Emanuel Alves
* @author Jörg Schaible
* @since 1.4.20
*/
public class OptionalConverter implements Converter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@


/**
* Converts an AtomicReference type.
* Converts an OptionalDouble type.
*
* @author Jörg Schaible
* @since 1.4.20
*/
public class OptionalDoubleConverter extends DoubleConverter implements Converter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@


/**
* Converts an AtomicReference type.
* Converts an OptionalInt type.
*
* @author Jörg Schaible
* @since 1.4.20
*/
public class OptionalIntConverter extends IntConverter implements Converter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@


/**
* Converts an AtomicReference type.
* Converts an OptionalLong type.
*
* @author Jörg Schaible
* @since 1.4.20
*/
public class OptionalLongConverter extends LongConverter implements Converter {
Expand Down

0 comments on commit 24eef2b

Please sign in to comment.