Remove trailing whitespace
This commit is contained in:
parent
c1955a2086
commit
3a854b01f6
|
@ -63,7 +63,7 @@ package org.apache.commons.lang3.builder;
|
|||
* }</pre>
|
||||
*
|
||||
* Example Builder Usage:
|
||||
* <pre>{@code
|
||||
* <pre>{@code
|
||||
* Font bold14ptSansSerifFont = new FontBuilder(Font.SANS_SERIF).bold()
|
||||
* .size(14.0f)
|
||||
* .build();
|
||||
|
|
|
@ -248,7 +248,7 @@
|
|||
* </p>
|
||||
*
|
||||
* <pre>
|
||||
* {@code
|
||||
* {@code
|
||||
* MultiBackgroundInitializer initializer = new MultiBackgroundInitializer();
|
||||
* initializer.addInitializer("url", new URLLoader(url));
|
||||
* initializer.addInitializer("jpa", new JPAEMFInitializer());
|
||||
|
@ -362,7 +362,7 @@
|
|||
* </p>
|
||||
*
|
||||
* <pre>
|
||||
* {@code
|
||||
* {@code
|
||||
* ConcurrentInitializer<MyClass> initializer = ...;
|
||||
* MyClass obj = ConcurrentUtils.initializeUnchecked(initializer);
|
||||
* // do something with obj
|
||||
|
@ -388,7 +388,7 @@
|
|||
* </p>
|
||||
*
|
||||
* <pre>
|
||||
* {@code
|
||||
* {@code
|
||||
* BasicThreadFactory factory = new BasicThreadFactory.Builder()
|
||||
* .namingPattern("worker-thread-%d")
|
||||
* .daemon(true)
|
||||
|
|
|
@ -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
|
||||
* like:
|
||||
*
|
||||
* <pre>
|
||||
* {@code
|
||||
* <pre>{@code
|
||||
* Consumer<java.lang.reflect.Method> consumer = m -> {
|
||||
* try {
|
||||
* m.invoke(o, args);
|
||||
|
|
|
@ -38,7 +38,7 @@ import java.util.TimeZone;
|
|||
* </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);
|
||||
* }
|
||||
*
|
||||
|
|
|
@ -54,7 +54,7 @@ import org.apache.commons.lang3.LocaleUtils;
|
|||
* <p>
|
||||
* Since FastDateParser is thread safe, you can use a static member instance:
|
||||
* </p>
|
||||
* {@code
|
||||
* {@code
|
||||
* private static final DateParser DATE_PARSER = FastDateFormat.getInstance("yyyy-MM-dd");
|
||||
* }
|
||||
*
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.apache.commons.lang3.exception.ExceptionUtils;
|
|||
* 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>
|
||||
* {@code
|
||||
* {@code
|
||||
* private static final DatePrinter DATE_PRINTER = FastDateFormat.getInstance("yyyy-MM-dd");
|
||||
* }
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue