]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/property/OrderedResource.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / property / OrderedResource.java
index 473869830b49e5a7e6054f9d54729d8cdebfca76..ee80605ad590a3726f70667752765f490ce188af 100644 (file)
@@ -1,20 +1,20 @@
-package org.simantics.db.layer0.property;\r
-\r
-import org.simantics.db.Resource;\r
-\r
-public final class OrderedResource implements Comparable<OrderedResource> {\r
-       \r
-       final public Integer i;\r
-       final public Resource r;\r
-       \r
-       public OrderedResource(Integer i, Resource r) {\r
-               this.i = i;\r
-               this.r = r;\r
-       }\r
-       \r
-       @Override\r
-       public int compareTo(OrderedResource o) {\r
-               return i.compareTo(o.i);\r
-       }\r
-       \r
+package org.simantics.db.layer0.property;
+
+import org.simantics.db.Resource;
+
+public final class OrderedResource implements Comparable<OrderedResource> {
+       
+       final public Integer i;
+       final public Resource r;
+       
+       public OrderedResource(Integer i, Resource r) {
+               this.i = i;
+               this.r = r;
+       }
+       
+       @Override
+       public int compareTo(OrderedResource o) {
+               return i.compareTo(o.i);
+       }
+       
 }
\ No newline at end of file