Small fixes

This commit is contained in:
Christopher Schnick
2022-06-18 01:55:01 +02:00
parent 4dc685f895
commit b80b8121f6
3 changed files with 27 additions and 7 deletions

View File

@@ -31,6 +31,8 @@ public abstract class Charsetter {
NewLine newLine;
}
protected Charsetter() {}
public static Charsetter INSTANCE;
public static Charsetter get() {

View File

@@ -9,6 +9,7 @@ module io.xpipe.core {
exports io.xpipe.core.data.node;
exports io.xpipe.core.data.typed;
exports io.xpipe.core.dialog;
exports io.xpipe.core.charsetter;
opens io.xpipe.core.store;
opens io.xpipe.core.source;
@@ -18,7 +19,6 @@ module io.xpipe.core {
opens io.xpipe.core.data.node;
opens io.xpipe.core.data.typed;
opens io.xpipe.core.dialog;
exports io.xpipe.core.charsetter;
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;