Simplify Javadocs.

This commit is contained in:
Gary Gregory 2020-12-23 10:03:31 -05:00
parent 31ede5565b
commit b1da31ef40
4 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@
*
* <pre>
* {@code
* Consumer<java.lang.reflect.Method> consumer = (m) -> {
* Consumer<java.lang.reflect.Method> consumer = m -> {
* try {
* m.invoke(o, args);
* } catch (Throwable t) {

View File

@ -43,7 +43,7 @@
* not to throw Exceptions, at least not checked Exceptions, AKA instances
* of {@link Exception}. This enforces the use of constructs like
* <pre>
* Consumer&lt;java.lang.reflect.Method&gt; consumer = (m) -&gt; {
* Consumer&lt;java.lang.reflect.Method&gt; consumer = m -&gt; {
* try {
* m.invoke(o, args);
* } catch (Throwable t) {

View File

@ -41,7 +41,7 @@
* constructs like:
*
* <pre>
* Consumer&lt;java.lang.reflect.Method-&gt; consumer = (m) -&gt; {
* Consumer&lt;java.lang.reflect.Method-&gt; consumer = m -&gt; {
* try {
* m.invoke(o, args);
* } catch (Throwable t) {

View File

@ -44,7 +44,7 @@
* not to throw Exceptions, at least not checked Exceptions, AKA instances
* of {@link Exception}. This enforces the use of constructs like
* <pre>
* Consumer&lt;java.lang.reflect.Method&gt; consumer = (m) -&gt; {
* Consumer&lt;java.lang.reflect.Method&gt; consumer = m -&gt; {
* try {
* m.invoke(o, args);
* } catch (Throwable t) {