aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/com
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-08-03 09:05:36 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-08-03 09:54:36 +0300
commita8ac69d4c0e82ff4c8da7bf608b41c07afe1fc0e (patch)
tree64324c3a7f26eef85637b91d9af6cfe100cddd00 /src/main/com
parent2132d8d8ead5619974976ca430d91ee760e0551b (diff)
Cleanup TunkkiError class
Diffstat (limited to 'src/main/com')
-rw-r--r--src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java b/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java
index 0124d37..62c2114 100644
--- a/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java
+++ b/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java
@@ -25,16 +25,11 @@ abstract public class TunkkiError extends Exception {
NadaError
}
- private static Map<ExceptionType, String> errorTexts = new HashMap<>();
-
-
- private List<String> arguments;
private int line;
private String[] args;
public TunkkiError(int line, String... args) {
super();
- this.arguments = Arrays.asList(args);
this.line = line;
this.args = args;
}
@@ -65,8 +60,4 @@ abstract public class TunkkiError extends Exception {
public void printStackTrace() {
System.err.println(completeMessage());
}
-
- public List<String> getArguments() {
- return this.arguments;
- }
}