]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.spreadsheet.graph/src/org/simantics/spreadsheet/graph/parser/ast/AstFactor.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.graph / src / org / simantics / spreadsheet / graph / parser / ast / AstFactor.java
index d5a3ef870c2ce5e5393e147c94fef5c8d298b539..03f4d2abca452c17b36ab4895cf52f1099d7c1f3 100644 (file)
@@ -1,34 +1,34 @@
-/*******************************************************************************\r
- *  Copyright (c) 2010 Association for Decentralized Information Management in\r
- *  Industry THTH ry.\r
- *  All rights reserved. This program and the accompanying materials\r
- *  are made available under the terms of the Eclipse Public License v1.0\r
- *  which accompanies this distribution, and is available at\r
- *  http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- *  Contributors:\r
- *      VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.spreadsheet.graph.parser.ast;\r
-\r
-import org.simantics.spreadsheet.graph.PrintVisitor;\r
-\r
+/*******************************************************************************
+ *  Copyright (c) 2010 Association for Decentralized Information Management in
+ *  Industry THTH ry.
+ *  All rights reserved. This program and the accompanying materials
+ *  are made available under the terms of the Eclipse Public License v1.0
+ *  which accompanies this distribution, and is available at
+ *  http://www.eclipse.org/legal/epl-v10.html
+ *
+ *  Contributors:
+ *      VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.spreadsheet.graph.parser.ast;
+
+import org.simantics.spreadsheet.graph.PrintVisitor;
+
 public class AstFactor extends AstList {
 
-       private static final long serialVersionUID = -3052855209216348090L;\r
-\r
-       public AstFactor(AstValue left) {\r
-               super(left);\r
-       }\r
+       private static final long serialVersionUID = -3052855209216348090L;
+
+       public AstFactor(AstValue left) {
+               super(left);
+       }
        
        @Override
        public <T> T accept(AstValueVisitor<T> v) {
                return v.visit(this);
        }
-\r
-       @Override\r
-       public String toString() {\r
-               return accept(new PrintVisitor());\r
-       }\r
+
+       @Override
+       public String toString() {
+               return accept(new PrintVisitor());
+       }
        
 }