MCPcopy Create free account
hub / github.com/GregTech6/gregtech6 / outputConfig

Method outputConfig

src/main/java/gregtech/asm/GT_ASM.java:141–146  ·  view source on GitHub ↗
(Writer out)

Source from the content-addressed store, hash-verified

139 }
140
141 private void outputConfig(Writer out) throws IOException {
142 out.write("# ASM Transformers, `true` to enable, `false` to disable\n");
143 for (Map.Entry<String, Boolean> entry : transformers.entrySet()) {
144 out.write("transformer:" + entry.getKey() + " = " + entry.getValue() + "\n");
145 }
146 }
147
148 private void loadConfig(BufferedReader in) throws IOException {
149 int lineno = 0;

Callers 1

ASMConfigMethod · 0.95

Calls 1

writeMethod · 0.80

Tested by

no test coverage detected