Skip to content

Commit

Permalink
fix travis-ci cannot find symbol Namifiable (#1376)
Browse files Browse the repository at this point in the history
fix #1363

Change-Id: I7b7ee43dfd92e1c54dc191f0ecba9557e02fa45b
  • Loading branch information
javeme authored Mar 4, 2021
1 parent a50c4c8 commit 656eee1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
import com.baidu.hugegraph.schema.SchemaManager;
import com.baidu.hugegraph.schema.VertexLabel;
import com.baidu.hugegraph.type.HugeType;
import com.baidu.hugegraph.type.Namifiable;
import com.baidu.hugegraph.type.define.Cardinality;
import com.baidu.hugegraph.type.define.DataType;
import com.baidu.hugegraph.util.E;
Expand Down Expand Up @@ -241,8 +240,9 @@ protected Object[] asArray(List<Object> list) {
protected abstract Object[] asArray();
}

// NOTE: travis-ci fails if class Entity implements Namifiable
public static abstract class Entity extends AuthElement
implements Namifiable {
implements com.baidu.hugegraph.type.Namifiable {

private static final long serialVersionUID = 4113319546914811762L;

Expand Down

0 comments on commit 656eee1

Please sign in to comment.