File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/apache/commons/beanutils2/converters Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2121/**
2222 * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion to and from {@link Instant} objects.
2323 * <p>
24- * Can be configured to either return a <i >default value</i > or throw a {@code ConversionException} if a conversion error occurs.
24+ * Can be configured to either return a <em >default value</em > or throw a {@code ConversionException} if a conversion error occurs.
2525 * </p>
2626 *
2727 * @since 2.0
3030public final class InstantConverter extends DateTimeConverter <Instant > {
3131
3232 /**
33- * Constructs a {@link Instant} <i >Converter</i > that throws a {@code ConversionException} if an error occurs.
33+ * Constructs a {@link Instant} <em >Converter</em > that throws a {@code ConversionException} if an error occurs.
3434 */
3535 public InstantConverter () {
3636 super ();
3737 }
3838
3939 /**
40- * Constructs a {@link Instant} <i >Converter</i > that returns a default value if an error occurs.
40+ * Constructs a {@link Instant} <em >Converter</em > that returns a default value if an error occurs.
4141 *
4242 * @param defaultValue The default value to be returned if the value to be converted is missing or an error occurs converting the value.
4343 */
You can’t perform that action at this time.
0 commit comments