(Writer out)
| 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; |