- Removed last deprecated file and added base config. Needs to be populated.

This commit is contained in:
Matthew Cech
2019-06-27 01:22:41 -07:00
parent 4315351832
commit 36168e8885
3 changed files with 6 additions and 9 deletions
+1
View File
@@ -1 +1,2 @@
"Type","Key","Value"
"Localized Strings","BoopStandard","Woah! %s booped me! That's %s total!"
1 Type Key Value
2 Localized Strings BoopStandard Woah! %s booped me! That's %s total!
+5 -1
View File
@@ -3,6 +3,8 @@ package core;
import java.util.List;
import java.util.Map;
import java.util.Vector;
import utils.GlobalLog;
import utils.io.FileMonitor;
public class Config
@@ -59,7 +61,9 @@ public class Config
public void upkeep()
{
monitoredConfigFile.update((monitoredFile) -> {
monitoredConfigFile.update((monitoredFile) ->
{
GlobalLog.log("File updated at " + monitoredFile.path);
buildConfigFile(monitoredFile.path.toString());
});
}
-8
View File
@@ -1,8 +0,0 @@
package core;
public abstract interface DEPRECATED_IConfigSection
{
public abstract String getHeader();
public abstract void read(String contents);
public abstract String write();
}