We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb07073 commit 8f88d8eCopy full SHA for 8f88d8e
gui/src/main/java/org/astraea/gui/pane/Argument.java
@@ -56,7 +56,10 @@ default Set<String> emptyValueKeys() {
56
default Map<String, String> nonEmptyTexts() {
57
return texts().entrySet().stream()
58
.filter(entry -> entry.getValue().isPresent())
59
- .collect(Collectors.toUnmodifiableMap(Map.Entry::getKey, e -> e.getValue().get()));
+ .collect(
60
+ Collectors.toUnmodifiableMap(
61
+ Map.Entry::getKey,
62
+ e -> e.getValue().get().equals("empty") ? "" : e.getValue().get()));
63
}
64
65
/**
0 commit comments