]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.impl/src/org/simantics/db/impl/TableFactory.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / TableFactory.java
index f7c161af4611ff714e341647726002f5b0a0f49d..c7af005bff51279f2d5a3be2e58375c5ef145367 100644 (file)
@@ -1,16 +1,16 @@
-package org.simantics.db.impl;\r
-\r
-public class TableFactory  {\r
-    private static TableFactoryI<byte[]> sByteFactory = new ByteFactory();\r
-    public static TableFactoryI<byte[]> getByteFactory() {\r
-        return sByteFactory;\r
-    }\r
-    private static TableFactoryI<int[]> sIntFactory = new IntFactory();\r
-    public static TableFactoryI<int[]> getIntFactory() {\r
-        return sIntFactory;\r
-    }\r
-    private static TableFactoryI<long[]> sLongFactory = new LongFactory();\r
-    public static TableFactoryI<long[]> getLongFactory() {\r
-        return sLongFactory;\r
-    }\r
-}\r
+package org.simantics.db.impl;
+
+public class TableFactory  {
+    private static TableFactoryI<byte[]> sByteFactory = new ByteFactory();
+    public static TableFactoryI<byte[]> getByteFactory() {
+        return sByteFactory;
+    }
+    private static TableFactoryI<int[]> sIntFactory = new IntFactory();
+    public static TableFactoryI<int[]> getIntFactory() {
+        return sIntFactory;
+    }
+    private static TableFactoryI<long[]> sLongFactory = new LongFactory();
+    public static TableFactoryI<long[]> getLongFactory() {
+        return sLongFactory;
+    }
+}