Stefan Dollase f307702b09 duplicated the class DevToolSettings
... to make it available to the test classes. The tests actually do not need it. However, it is used in the test data generator.

In the future, we should move the devtools to the test source folder and removed the extra devtools source folder to prevent stuff like this.
2016-01-25 02:15:43 +01:00

17 lines
437 B
Java

package amidst.devtools;
public enum DevToolsSettings {
INSTANCE;
private String minecraftVersionsDirectory = "/home/stefan/.minecraft/amidst-all-client-versions/";
private String minecraftLibrariesDirectory = "/home/stefan/.minecraft/libraries/";
public String getMinecraftVersionsDirectory() {
return minecraftVersionsDirectory;
}
public String getMinecraftLibrariesDirectory() {
return minecraftLibrariesDirectory;
}
}