]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph/src/org/simantics/graph/refactoring/MappingSpecification.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graph / src / org / simantics / graph / refactoring / MappingSpecification.java
index b6b504d455d6921005491c1e9618e8e98b9c3755..246b22664ef21ca5d9e5290bcba1e182b6424705 100644 (file)
@@ -1,27 +1,27 @@
-package org.simantics.graph.refactoring;\r
-\r
-import java.util.Collection;\r
-\r
-import org.simantics.graph.query.Path;\r
-\r
-public class MappingSpecification {\r
-    public static class MappingRule {\r
-        public final Path from;\r
-        public final Path to;\r
-        \r
-        public MappingRule(Path from, Path to) {\r
-            this.from = from;\r
-            this.to = to;\r
-        }\r
-    }\r
-    \r
-    public final Collection<MappingRule> rules;\r
-\r
-    public MappingSpecification(Collection<MappingRule> rules) {\r
-        this.rules = rules;\r
-    }\r
-    \r
-    public Collection<MappingRule> getRules() {\r
-        return rules;\r
-    }\r
-}\r
+package org.simantics.graph.refactoring;
+
+import java.util.Collection;
+
+import org.simantics.graph.query.Path;
+
+public class MappingSpecification {
+    public static class MappingRule {
+        public final Path from;
+        public final Path to;
+        
+        public MappingRule(Path from, Path to) {
+            this.from = from;
+            this.to = to;
+        }
+    }
+    
+    public final Collection<MappingRule> rules;
+
+    public MappingSpecification(Collection<MappingRule> rules) {
+        this.rules = rules;
+    }
+    
+    public Collection<MappingRule> getRules() {
+        return rules;
+    }
+}