]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.ltk/src/org/simantics/ltk/Problem.java
Removed org.simantics.ltk[.antlr] bundles, exact import for antlr
[simantics/platform.git] / bundles / org.simantics.ltk / src / org / simantics / ltk / Problem.java
diff --git a/bundles/org.simantics.ltk/src/org/simantics/ltk/Problem.java b/bundles/org.simantics.ltk/src/org/simantics/ltk/Problem.java
deleted file mode 100644 (file)
index 8f31723..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.simantics.ltk;
-
-public class Problem {
-       Location location;
-       String description;
-       Severity severity;
-       
-       public Problem(Location location, String description,
-                       Severity severity) {
-               this.location = location;
-               this.description = description;
-               this.severity = severity;
-       }
-       
-       public Problem(Location location, String description) {
-               this(location, description, Severity.ERROR);
-       }
-
-       public Location getLocation() {
-               return location;
-       }
-       
-       public void setLocation(Location location) {
-               this.location = location;
-       }
-       
-       public String getDescription() {
-               return description;
-       }
-       
-       public void setDescription(String description) {
-               this.description = description;
-       }
-}
\ No newline at end of file