Skip to content

Commit

Permalink
fix javadoc typo
Browse files Browse the repository at this point in the history
Signed-off-by: Nicholas Walter Knize <[email protected]>
  • Loading branch information
nknize committed May 29, 2023
1 parent 7fb5a6e commit f149cde
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static Class<?> getCustomClassFromValue(final Object value) {
if (value == null) {
throw new IllegalArgumentException("Attempting to retrieve a class type from a null value");
}
// rip through registered classes; return the class iff 'value' is an instant
// rip through registered classes; return the class iff 'value' is an instance
// we do it this way to cover inheritance and interfaces (e.g., joda DateTime is an instanceof
// a ReadableInstant interface)
for (final Class<?> clazz : WRITER_CUSTOM_CLASS_MAP.values()) {
Expand Down

0 comments on commit f149cde

Please sign in to comment.