aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/Functions.java
diff options
context:
space:
mode:
authorAllon Mureinik <mureinik@gmail.com>2019-02-08 20:05:43 +0200
committerAllon Mureinik <mureinik@gmail.com>2019-02-08 20:08:56 +0200
commitfc6a392b7c1a23227a994972985dadef10ab83a9 (patch)
tree961c2a7d7cc9aebb4c53ec49b7d00f70d60b67c4 /src/main/java/org/apache/commons/lang3/Functions.java
parentf12cfc8d4e723c0973150350eb0c68c52ea1068b (diff)
downloadapache-commons-lang-fc6a392b7c1a23227a994972985dadef10ab83a9.tar.gz
Fix javadoc errors in Functions.java
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/Functions.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/Functions.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/org/apache/commons/lang3/Functions.java b/src/main/java/org/apache/commons/lang3/Functions.java
index 903a5277c..ec4db67ae 100644
--- a/src/main/java/org/apache/commons/lang3/Functions.java
+++ b/src/main/java/org/apache/commons/lang3/Functions.java
@@ -28,7 +28,7 @@ import java.lang.reflect.UndeclaredThrowableException;
* 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&lt;java.lang.reflect.Method&gt; consumer = (m) -&gt; {
* try {
* m.invoke(o, args);
* } catch (Throwable t) {
@@ -36,11 +36,11 @@ import java.lang.reflect.UndeclaredThrowableException;
* }
* };
* </pre>
- * By replacing a {@link Consumer Consumer<O>} with a
- * {@link FailableConsumer FailableConsumer<O,? extends Throwable}, this can be
+ * By replacing a {@link java.util.function.Consumer Consumer&lt;O&gt;} with a
+ * {@link FailableConsumer FailableConsumer&lt;O,? extends Throwable&gt;}, this can be
* written like follows:
* <pre>
- * Functions.accept((m) -> m.invoke(o,args));
+ * Functions.accept((m) -&gt; m.invoke(o,args));
* </pre>
* Obviously, the second version is much more concise and the spirit of
* Lambda expressions is met better than the second version.
@@ -265,7 +265,7 @@ public class Functions {
* {@link Throwable} is rethrown. Example use:
* <pre>
* final FileInputStream fis = new FileInputStream("my.file");
- * Functions.tryWithResources(useInputStream(fis), null, () -> fis.close());
+ * Functions.tryWithResources(useInputStream(fis), null, () -&gt; fis.close());
* </pre>
* @param pAction The action to execute. This object <em>will</em> always
* be invoked.
@@ -330,7 +330,7 @@ public class Functions {
* {@link Throwable} is rethrown. Example use:
* <pre>
* final FileInputStream fis = new FileInputStream("my.file");
- * Functions.tryWithResources(useInputStream(fis), () -> fis.close());
+ * Functions.tryWithResources(useInputStream(fis), () -&gt; fis.close());
* </pre>
* @param pAction The action to execute. This object <em>will</em> always
* be invoked.