You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OptionSpec<Boolean> basicCleanupO = parser.accepts("basic", "Rus the BasicCleanups set").withOptionalArg().ofType(Boolean.class);
32
35
OptionSpec<Boolean> glCleanupO = parser.accepts("gl", "Runs the GLConstantFixer set").withOptionalArg().ofType(Boolean.class);
33
36
OptionSpec<Boolean> fmlCleanupO = parser.accepts("fml", "Runs the FMLCleanup set").withOptionalArg().ofType(Boolean.class);
37
+
OptionSpec<Boolean> fmlCasesCleanupO = parser.accepts("fml-cases", "Fixed blank lines around case statements when doing FMLCleanup").withOptionalArg().ofType(Boolean.class);
OptionSpec<Mode> modeO = parser.accepts("mode", "What set of fixes we should be running").withRequiredArg().withValuesConvertedBy(Mode.MODERN);
41
+
OptionSpec<String> ignorePatchesO = parser.accepts("ignore-patches", "Patch files to ingore").withRequiredArg();
42
+
43
+
44
+
OptionSpec<File> patchesO = parser.accepts("patches", "Archive containing patch files to apply after doing the FernFlower cleanup").withRequiredArg().ofType(File.class);
45
+
OptionSpec<String> patchesPrefixO = parser.accepts("patches-prefix", "Prefix of patch files in the specified archive").withRequiredArg();
0 commit comments