Skip to content

Commit

Permalink
fix issues with nonexistent flags
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Mar 12, 2019
1 parent 1bbbb84 commit 45233ab
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -742,8 +742,11 @@ public Flag rebuild() {
}
value = new Value(val);
}
else if (obj == null || obj.toString().length() == 0) {
value = new Value();
}
else {
value = new Value(String.valueOf(obj));
value = new Value(obj.toString());
}
return this;
}
Expand Down

0 comments on commit 45233ab

Please sign in to comment.