fix #814 add value check

This commit is contained in:
Shinsuke Sugaya 2017-01-25 06:49:10 +09:00
parent 297b5f113d
commit c1816c92ab

View file

@ -1280,6 +1280,9 @@ public interface FessProp {
return source.entrySet().stream().map(e -> {
final String key = e.getKey();
Object value = e.getValue();
if (value == null) {
value = StringUtil.EMPTY;
}
if (value instanceof String || value == null) {
return new Pair<>(key, value);
}