]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/modules/MethodImplementation.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / modules / MethodImplementation.java
old mode 100755 (executable)
new mode 100644 (file)
index 6359171..a381915
@@ -1,24 +1,24 @@
-package org.simantics.scl.compiler.elaboration.modules;\r
-\r
-import org.simantics.scl.compiler.common.names.Name;\r
-\r
-public class MethodImplementation {\r
-    \r
-    public final Name name;\r
-    public final boolean isDefault;\r
-    private SCLValue value;\r
-    \r
-    public MethodImplementation(Name name, boolean isDefault) {\r
-        this.name = name;\r
-        this.isDefault = isDefault;\r
-    }\r
-\r
-    public SCLValue getValue() {\r
-        return value;\r
-    }\r
-    \r
-    public void setValue(SCLValue value) {\r
-        this.value = value;\r
-    }\r
-    \r
-}\r
+package org.simantics.scl.compiler.elaboration.modules;
+
+import org.simantics.scl.compiler.common.names.Name;
+
+public class MethodImplementation {
+    
+    public final Name name;
+    public final boolean isDefault;
+    private SCLValue value;
+    
+    public MethodImplementation(Name name, boolean isDefault) {
+        this.name = name;
+        this.isDefault = isDefault;
+    }
+
+    public SCLValue getValue() {
+        return value;
+    }
+    
+    public void setValue(SCLValue value) {
+        this.value = value;
+    }
+    
+}