]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.common/src/org/simantics/spreadsheet/common/cell/MatrixStringCellParser.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.common / src / org / simantics / spreadsheet / common / cell / MatrixStringCellParser.java
index 3b0c40224134634b24ab836339c055f6f2f2ec1c..97d44d4437f8246e2495965496e0589bc62e43d3 100644 (file)
@@ -1,25 +1,25 @@
-package org.simantics.spreadsheet.common.cell;\r
-\r
-import java.util.Collection;\r
-import java.util.Collections;\r
-\r
-import org.simantics.databoard.binding.mutable.Variant;\r
-import org.simantics.db.layer0.variable.VariableSpaceManipulator.PropertyCreationData;\r
-\r
-public class MatrixStringCellParser implements StringCellParser {\r
-\r
-    @Override\r
-    public Collection<PropertyCreationData> parse(String text) {\r
-        if(text.startsWith("Mat")) {\r
-            return Collections.singletonList(PropertyCreationData.build(Parsers.LABEL_PROPERTY, Variant.ofInstance(text)));\r
-        } else {\r
-            return null;\r
-        }\r
-    }\r
-    \r
-    @Override\r
-    public String getType() { \r
-       return null;\r
-    }\r
-    \r
+package org.simantics.spreadsheet.common.cell;
+
+import java.util.Collection;
+import java.util.Collections;
+
+import org.simantics.databoard.binding.mutable.Variant;
+import org.simantics.db.layer0.variable.VariableSpaceManipulator.PropertyCreationData;
+
+public class MatrixStringCellParser implements StringCellParser {
+
+    @Override
+    public Collection<PropertyCreationData> parse(String text) {
+        if(text.startsWith("Mat")) {
+            return Collections.singletonList(PropertyCreationData.build(Parsers.LABEL_PROPERTY, Variant.ofInstance(text)));
+        } else {
+            return null;
+        }
+    }
+    
+    @Override
+    public String getType() { 
+       return null;
+    }
+    
 }
\ No newline at end of file