Simplify Javadocs.
This commit is contained in:
parent
31ede5565b
commit
b1da31ef40
|
@ -42,7 +42,7 @@ import org.apache.commons.lang3.function.FailableBooleanSupplier;
|
|||
*
|
||||
* <pre>
|
||||
* {@code
|
||||
* Consumer<java.lang.reflect.Method> consumer = (m) -> {
|
||||
* Consumer<java.lang.reflect.Method> consumer = m -> {
|
||||
* try {
|
||||
* m.invoke(o, args);
|
||||
* } catch (Throwable t) {
|
||||
|
|
|
@ -43,7 +43,7 @@ import org.apache.commons.lang3.Functions.FailablePredicate;
|
|||
* not to throw Exceptions, at least not checked Exceptions, AKA instances
|
||||
* of {@link Exception}. This enforces the use of constructs like
|
||||
* <pre>
|
||||
* Consumer<java.lang.reflect.Method> consumer = (m) -> {
|
||||
* Consumer<java.lang.reflect.Method> consumer = m -> {
|
||||
* try {
|
||||
* m.invoke(o, args);
|
||||
* } catch (Throwable t) {
|
||||
|
|
|
@ -41,7 +41,7 @@ import org.apache.commons.lang3.stream.Streams.FailableStream;
|
|||
* constructs like:
|
||||
*
|
||||
* <pre>
|
||||
* Consumer<java.lang.reflect.Method-> consumer = (m) -> {
|
||||
* Consumer<java.lang.reflect.Method-> consumer = m -> {
|
||||
* try {
|
||||
* m.invoke(o, args);
|
||||
* } catch (Throwable t) {
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.apache.commons.lang3.function.FailablePredicate;
|
|||
* not to throw Exceptions, at least not checked Exceptions, AKA instances
|
||||
* of {@link Exception}. This enforces the use of constructs like
|
||||
* <pre>
|
||||
* Consumer<java.lang.reflect.Method> consumer = (m) -> {
|
||||
* Consumer<java.lang.reflect.Method> consumer = m -> {
|
||||
* try {
|
||||
* m.invoke(o, args);
|
||||
* } catch (Throwable t) {
|
||||
|
|
Loading…
Reference in New Issue