]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph/src/org/simantics/graph/matching/DebugMatchingStrategy.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.graph / src / org / simantics / graph / matching / DebugMatchingStrategy.java
index fc1d58f593f3e23393930283c3f3e6a7a5b9c6b1..0ab0b455363ea3474656aeb8c534c5c37fcc9f62 100644 (file)
@@ -1,20 +1,20 @@
-package org.simantics.graph.matching;\r
-\r
-\r
-public enum DebugMatchingStrategy implements GraphMatchingStrategy {\r
-\r
-       INSTANCE;\r
-       \r
-       @Override\r
-       public void applyTo(GraphMatching matching) {\r
-               int[] aToB = matching.aToB;\r
-               String[] names = matching.aGraph.names;\r
-               for(int s=0;s<aToB.length;++s)\r
-                       if(aToB[s] < 0) {\r
-                               System.out.println(names[s]);\r
-                               for(Stat stat : matching.aGraph.statements[s]) {\r
-                                       System.out.println("    " + stat.toString(names));\r
-                               }\r
-                       }\r
-       }\r
-}\r
+package org.simantics.graph.matching;
+
+
+public enum DebugMatchingStrategy implements GraphMatchingStrategy {
+
+       INSTANCE;
+       
+       @Override
+       public void applyTo(GraphMatching matching) {
+               int[] aToB = matching.aToB;
+               String[] names = matching.aGraph.names;
+               for(int s=0;s<aToB.length;++s)
+                       if(aToB[s] < 0) {
+                               System.out.println(names[s]);
+                               for(Stat stat : matching.aGraph.statements[s]) {
+                                       System.out.println("    " + stat.toString(names));
+                               }
+                       }
+       }
+}