mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-22 15:05:18 +01:00
Updated internalToString
This commit is contained in:
parent
489688f463
commit
9bacc5ddbc
@ -78,7 +78,7 @@ public class StringUtils {
|
||||
return NumberUtils.format((Double) object);
|
||||
} else if (object instanceof Collection<?>) {
|
||||
Collection<?> c = (Collection<?>) object;
|
||||
return c.stream().map(String::valueOf).collect(Collectors.joining(", "));
|
||||
return c.stream().map(StringUtils::internalToString).collect(Collectors.joining(", "));
|
||||
} else return String.valueOf(object);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user