Skip to content

Commit

Permalink
validValues should not return null.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcustenborder committed May 2, 2018
1 parent b8f1b19 commit 3af4d58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ public boolean visible(String key, Map<String, Object> settings) {
ConfigDef.Recommender finishedPath = new ConfigDef.Recommender() {
@Override
public List<Object> validValues(String s, Map<String, Object> map) {
return null;
return ImmutableList.of();
}

@Override
Expand Down

0 comments on commit 3af4d58

Please sign in to comment.