]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/module/repository/ImportFailure.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / module / repository / ImportFailure.java
index 6d63fedcf7947a869fa7189faf2d153cda8d5d02..29ffdfc7f8e855fa9b6440f1cea14707b4eebc81 100644 (file)
@@ -1,23 +1,23 @@
-package org.simantics.scl.compiler.module.repository;\r
-\r
-public class ImportFailure {\r
-    public final static Object MODULE_DOES_NOT_EXIST_REASON = new Object();\r
-    \r
-    public final long location;\r
-    public final String moduleName;\r
-    public final Object reason;\r
-    \r
-    public ImportFailure(long location, String moduleName, Object reason) {\r
-        this.location = location;\r
-        this.moduleName = moduleName;\r
-        this.reason = reason;\r
-    }\r
-    \r
-    @Override\r
-    public String toString() {\r
-        return "Failed to import " + moduleName + ", because it " + \r
-                (reason == ImportFailure.MODULE_DOES_NOT_EXIST_REASON \r
-                        ? "does not exist."\r
-                        : "contains compilation errors.");\r
-    }\r
-}\r
+package org.simantics.scl.compiler.module.repository;
+
+public class ImportFailure {
+    public final static Object MODULE_DOES_NOT_EXIST_REASON = new Object();
+    
+    public final long location;
+    public final String moduleName;
+    public final Object reason;
+    
+    public ImportFailure(long location, String moduleName, Object reason) {
+        this.location = location;
+        this.moduleName = moduleName;
+        this.reason = reason;
+    }
+    
+    @Override
+    public String toString() {
+        return "Failed to import " + moduleName + ", because it " + 
+                (reason == ImportFailure.MODULE_DOES_NOT_EXIST_REASON 
+                        ? "does not exist."
+                        : "contains compilation errors.");
+    }
+}