Remove trailing whitespace

This commit is contained in:
Gary Gregory 2024-07-29 19:04:16 -04:00
parent c1955a2086
commit 3a854b01f6
6 changed files with 8 additions and 9 deletions

View File

@ -63,7 +63,7 @@ package org.apache.commons.lang3.builder;
* }</pre> * }</pre>
* *
* Example Builder Usage: * Example Builder Usage:
* <pre>{@code * <pre>{@code
* Font bold14ptSansSerifFont = new FontBuilder(Font.SANS_SERIF).bold() * Font bold14ptSansSerifFont = new FontBuilder(Font.SANS_SERIF).bold()
* .size(14.0f) * .size(14.0f)
* .build(); * .build();

View File

@ -248,7 +248,7 @@
* </p> * </p>
* *
* <pre> * <pre>
* {@code * {@code
* MultiBackgroundInitializer initializer = new MultiBackgroundInitializer(); * MultiBackgroundInitializer initializer = new MultiBackgroundInitializer();
* initializer.addInitializer("url", new URLLoader(url)); * initializer.addInitializer("url", new URLLoader(url));
* initializer.addInitializer("jpa", new JPAEMFInitializer()); * initializer.addInitializer("jpa", new JPAEMFInitializer());
@ -362,7 +362,7 @@
* </p> * </p>
* *
* <pre> * <pre>
* {@code * {@code
* ConcurrentInitializer<MyClass> initializer = ...; * ConcurrentInitializer<MyClass> initializer = ...;
* MyClass obj = ConcurrentUtils.initializeUnchecked(initializer); * MyClass obj = ConcurrentUtils.initializeUnchecked(initializer);
* // do something with obj * // do something with obj
@ -388,7 +388,7 @@
* </p> * </p>
* *
* <pre> * <pre>
* {@code * {@code
* BasicThreadFactory factory = new BasicThreadFactory.Builder() * BasicThreadFactory factory = new BasicThreadFactory.Builder()
* .namingPattern("worker-thread-%d") * .namingPattern("worker-thread-%d")
* .daemon(true) * .daemon(true)

View File

@ -50,8 +50,7 @@ import org.apache.commons.lang3.function.FailablePredicate;
* Exceptions, at least not checked Exceptions, AKA instances of {@link Exception}. This enforces the use of constructs * Exceptions, at least not checked Exceptions, AKA instances of {@link Exception}. This enforces the use of constructs
* like: * like:
* *
* <pre> * <pre>{@code
* {@code
* Consumer<java.lang.reflect.Method> consumer = m -> { * Consumer<java.lang.reflect.Method> consumer = m -> {
* try { * try {
* m.invoke(o, args); * m.invoke(o, args);

View File

@ -38,7 +38,7 @@ import java.util.TimeZone;
* </p> * </p>
* *
* <p>Since FastDateFormat is thread safe, you can use a static member instance:</p> * <p>Since FastDateFormat is thread safe, you can use a static member instance:</p>
* {@code * {@code
* private static final FastDateFormat DATE_FORMATTER = FastDateFormat.getDateTimeInstance(FastDateFormat.LONG, FastDateFormat.SHORT); * private static final FastDateFormat DATE_FORMATTER = FastDateFormat.getDateTimeInstance(FastDateFormat.LONG, FastDateFormat.SHORT);
* } * }
* *

View File

@ -54,7 +54,7 @@ import org.apache.commons.lang3.LocaleUtils;
* <p> * <p>
* Since FastDateParser is thread safe, you can use a static member instance: * Since FastDateParser is thread safe, you can use a static member instance:
* </p> * </p>
* {@code * {@code
* private static final DateParser DATE_PARSER = FastDateFormat.getInstance("yyyy-MM-dd"); * private static final DateParser DATE_PARSER = FastDateFormat.getInstance("yyyy-MM-dd");
* } * }
* *

View File

@ -44,7 +44,7 @@ import org.apache.commons.lang3.exception.ExceptionUtils;
* or another variation of the factory methods of {@link FastDateFormat}.</p> * or another variation of the factory methods of {@link FastDateFormat}.</p>
* *
* <p>Since FastDatePrinter is thread safe, you can use a static member instance:</p> * <p>Since FastDatePrinter is thread safe, you can use a static member instance:</p>
* {@code * {@code
* private static final DatePrinter DATE_PRINTER = FastDateFormat.getInstance("yyyy-MM-dd"); * private static final DatePrinter DATE_PRINTER = FastDateFormat.getInstance("yyyy-MM-dd");
* } * }
* *