Skip to content

Commit

Permalink
Fix javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Mar 24, 2017
1 parent d064271 commit bdcddec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static DoubleConsumer safe(ThrowableDoubleConsumer<Throwable> throwableCo
* @return a {@code DoubleConsumer}
* @throws NullPointerException if {@code throwableConsumer} is null
* @since 1.1.7
* @see #safe(com.annimon.stream.function.ThrowableConsumer)
* @see #safe(com.annimon.stream.function.ThrowableDoubleConsumer)
*/
public static DoubleConsumer safe(
final ThrowableDoubleConsumer<Throwable> throwableConsumer,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static IntConsumer safe(ThrowableIntConsumer<Throwable> throwableConsumer
* @return an {@code IntConsumer}
* @throws NullPointerException if {@code throwableConsumer} is null
* @since 1.1.7
* @see #safe(com.annimon.stream.function.ThrowableConsumer)
* @see #safe(com.annimon.stream.function.ThrowableIntConsumer)
*/
public static IntConsumer safe(
final ThrowableIntConsumer<Throwable> throwableConsumer,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static LongConsumer safe(ThrowableLongConsumer<Throwable> throwableConsum
* @return a {@code LongConsumer}
* @throws NullPointerException if {@code throwableConsumer} is null
* @since 1.1.7
* @see #safe(com.annimon.stream.function.ThrowableConsumer)
* @see #safe(com.annimon.stream.function.ThrowableLongConsumer)
*/
public static LongConsumer safe(
final ThrowableLongConsumer<Throwable> throwableConsumer,
Expand Down

0 comments on commit bdcddec

Please sign in to comment.