Skip to content

Commit

Permalink
Remove unused code and bloat
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthurmeade12 committed Dec 16, 2023
1 parent deb3941 commit 19720b0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 40 deletions.
23 changes: 0 additions & 23 deletions declension.properties

This file was deleted.

17 changes: 0 additions & 17 deletions eval.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ public class eval {
public String root;
protected String nom;
eval(String nominative, String gen, byte declnum) {
//root = Thread.currentThread().getContextClassLoader().getResource("").getPath();
//msg.debug("Root : " + root);
//String filename = "declension.properties";
//String file = this.root + filename;
//msg.debug("Properties : " + filename);
//eval.load_props(file);
nom = nominative;
decl = declnum;
base = latinutils.getbase(gen, decl);
Expand All @@ -33,17 +27,6 @@ public class eval {
msg.die("Not using latin. Unsupported.");
}
}
//private static void load_props(String file) throws Exception{
// Properties props = new Properties();
// try {
// props.load(new FileInputStream(file));
// } catch (FileNotFoundException excpt) {
// msg.die("Properties file not found.");
// throw excpt;
// }
// print_vocatives = Boolean.parseBoolean(props.getProperty("print_vocatives", "false"));
// print_locatives = Boolean.parseBoolean(props.getProperty("print_locatives", "false"));
//}
protected void exceptions(){
msg.die("Call this from the subclass.", 1);
}
Expand Down

0 comments on commit 19720b0

Please sign in to comment.