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