Skip to content

Commit

Permalink
(yegor256#1406) Update puzzles
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoss committed Sep 5, 2020
1 parent 46e8ec3 commit 202c47a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/cactoos/func/Async.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
* @param <X> Type of input
* @param <Y> Type of output
* @since 0.10
*
* @todo #1406:30m This class should not implement Proc, as it's always
* used as Func. Clarify the rationale for it being Proc, if it's
* unnecessary de-implement Proc. And implement Async for Proc if needed.
*/
public final class Async<X, Y> implements Func<X, Future<Y>>, Proc<X> {

Expand Down
5 changes: 2 additions & 3 deletions src/main/java/org/cactoos/proc/RepeatedProc.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@
*
* @param <X> Type of input
* @since 0.49.2
* @todo #1277:30m Split the entire `org.cactoos.func` package
* into `org.cactoos.func`, `org.cactoos.proc`
* and `org.cactoos.callable`,
* @todo #1406:30m Split the entire `org.cactoos.func` package
* into `org.cactoos.func` and `org.cactoos.callable`,
* with each one holding their related decorators, classes and interfaces.
*/
public final class RepeatedProc<X> implements Proc<X> {
Expand Down

0 comments on commit 202c47a

Please sign in to comment.