Skip to content

Commit

Permalink
#38: Arg should extends Scalar
Browse files Browse the repository at this point in the history
  • Loading branch information
dgroup committed Jun 12, 2019
1 parent f67e37f commit c773444
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/com/github/dgroup/velocity/Arg.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*/
package com.github.dgroup.velocity;

import org.cactoos.Scalar;

/**
* The resource variable.
*
Expand All @@ -31,7 +33,7 @@
* @param <V> Type of item.
* @since 0.1.0
*/
public interface Arg<V> {
public interface Arg<V> extends Scalar<V> {

/**
* Label of variable in Apache Velocity template.
Expand Down

0 comments on commit c773444

Please sign in to comment.