mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-12-29 12:37:40 +01:00
Don't pretty-print '/lp export' json (#3489)
This commit is contained in:
parent
44470c8843
commit
8bbb6994b6
@ -258,7 +258,7 @@ public abstract class Exporter implements Runnable {
|
|||||||
|
|
||||||
ByteArrayOutputStream bytesOut = new ByteArrayOutputStream();
|
ByteArrayOutputStream bytesOut = new ByteArrayOutputStream();
|
||||||
try (Writer writer = new OutputStreamWriter(new GZIPOutputStream(bytesOut), StandardCharsets.UTF_8)) {
|
try (Writer writer = new OutputStreamWriter(new GZIPOutputStream(bytesOut), StandardCharsets.UTF_8)) {
|
||||||
GsonProvider.prettyPrinting().toJson(json, writer);
|
GsonProvider.normal().toJson(json, writer);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
this.plugin.getLogger().severe("Error compressing data", e);
|
this.plugin.getLogger().severe("Error compressing data", e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user