mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-06 08:08:07 +00:00
Toml null handling
This commit is contained in:
@@ -545,7 +545,7 @@ public class TomlConfigurationStorage implements ConfigurationStorage {
|
||||
if (showComments) {
|
||||
pw.println();
|
||||
}
|
||||
if (!item.hasValue || savedValue.isEmpty()) {
|
||||
if (!item.hasValue || savedValue == null || savedValue.isEmpty()) {
|
||||
pw.print("# ");
|
||||
}
|
||||
pw.print(key + " = ");
|
||||
|
||||
Reference in New Issue
Block a user