Skip to content

Commit

Permalink
Workaround for java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Jun 2, 2017
1 parent 9e6dce2 commit e1a961d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/net/citizensnpcs/api/util/DataKey.java
Expand Up @@ -147,5 +147,10 @@ public boolean apply(DataKey key) {
return false;
}
}

@Override
public boolean test(DataKey key) {
return apply(key);
}
};
}

0 comments on commit e1a961d

Please sign in to comment.