Skip to content

Commit fbca649

Browse files
committed
#28: Arg is extending Scalar<T>
1 parent 4eeb6b2 commit fbca649

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/io/github/dgroup/term4j

1 file changed

+2
-2
lines changed

src/main/java/io/github/dgroup/term4j/Arg.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
package io.github.dgroup.term4j;
2525

2626
import io.github.dgroup.term4j.arg.ArgNotFoundException;
27+
import org.cactoos.Scalar;
2728

2829
/**
2930
* Represents the command-line argument.
3031
*
3132
* @param <X> Type of item.
3233
* @since 0.1.0
33-
* @todo #/DEV Arg should extends {@link org.cactoos.Scalar}
3434
*/
35-
public interface Arg<X> {
35+
public interface Arg<X> extends Scalar<X> {
3636

3737
/**
3838
* The label of the command-line argument.

0 commit comments

Comments
 (0)