mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-25 01:49:16 +00:00
Cleanup FMA system property parsing
This commit is contained in:
@@ -5,7 +5,7 @@ import joptsimple.OptionSet;
|
||||
|
||||
public class LeafBootstrap {
|
||||
|
||||
public static final boolean enableFMA = Boolean.parseBoolean(System.getProperty("Leaf.enableFMA", "false")); // Leaf - FMA feature
|
||||
public static final boolean enableFMA = Boolean.getBoolean("Leaf.enableFMA");
|
||||
|
||||
public static void boot(final OptionSet options) {
|
||||
//runPreBootTasks();
|
||||
|
||||
Reference in New Issue
Block a user