]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.ui/src/org/simantics/scl/ui/editor/TextAndErrors.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scl.ui / src / org / simantics / scl / ui / editor / TextAndErrors.java
index c91bdbe5d3de89e132511f93366f685834e2a599..ae0ecdd6e899d4e82eb244a7ae0c12ca4dd500bb 100644 (file)
@@ -1,21 +1,21 @@
-package org.simantics.scl.ui.editor;\r
-\r
-import java.util.List;\r
-\r
-import org.simantics.scl.compiler.errors.CompilationError;\r
-\r
-public class TextAndErrors {\r
-\r
-       public final String text;\r
-       public final CompilationError[] errors;\r
-\r
-       public TextAndErrors(String text, CompilationError[] errors) {\r
-               this.text = text;\r
-               this.errors = errors;\r
-       }\r
-       \r
-       public static TextAndErrors createTextAndErrors(String text, List<CompilationError> errors) {\r
-               return new TextAndErrors(text, errors.toArray(new CompilationError[errors.size()]));\r
-       }\r
-       \r
-}\r
+package org.simantics.scl.ui.editor;
+
+import java.util.List;
+
+import org.simantics.scl.compiler.errors.CompilationError;
+
+public class TextAndErrors {
+
+       public final String text;
+       public final CompilationError[] errors;
+
+       public TextAndErrors(String text, CompilationError[] errors) {
+               this.text = text;
+               this.errors = errors;
+       }
+       
+       public static TextAndErrors createTextAndErrors(String text, List<CompilationError> errors) {
+               return new TextAndErrors(text, errors.toArray(new CompilationError[errors.size()]));
+       }
+       
+}