]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/binding/mutable/MutableLongBinding.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / binding / mutable / MutableLongBinding.java
index cde574ccf134f8641d5ef8adbcd229818311d632..ef4c4fd3ce70b0152ea8c024e688d1b20e3447d8 100644 (file)
@@ -1,20 +1,20 @@
-/*******************************************************************************\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
+/*******************************************************************************
+ *  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.databoard.binding.mutable;
 
-import org.simantics.databoard.binding.LongBinding;\r
-import org.simantics.databoard.binding.error.BindingException;\r
-import org.simantics.databoard.primitives.MutableLong;\r
-import org.simantics.databoard.type.LongType;\r
+import org.simantics.databoard.binding.LongBinding;
+import org.simantics.databoard.binding.error.BindingException;
+import org.simantics.databoard.primitives.MutableLong;
+import org.simantics.databoard.type.LongType;
 
 /**
  * Binds LongType to {@link MutableLong}
@@ -49,14 +49,14 @@ public class MutableLongBinding extends LongBinding {
        }
 
        @Override
-       public Object create(String value) throws BindingException {\r
+       public Object create(String value) throws BindingException {
                try {
                        MutableLong result = new MutableLong();
                        result.value = Long.valueOf(value);
-                       return result;\r
-               } catch (java.lang.NumberFormatException e) {\r
-                       throw new BindingException( e );\r
-               }\r
+                       return result;
+               } catch (java.lang.NumberFormatException e) {
+                       throw new BindingException( e );
+               }
        }
 
        @Override