]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/event/OptionalValueRemoved.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / accessor / event / OptionalValueRemoved.java
index 3e53e8794dae2ae3ff9954d48a854a97ce23abbf..76d82ddc0fbaf6f8fb9b4365f06769cfc764f03d 100644 (file)
@@ -1,26 +1,26 @@
-/*******************************************************************************\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.accessor.event;
 
-import org.simantics.databoard.accessor.reference.ChildReference;\r
+import org.simantics.databoard.accessor.reference.ChildReference;
 
 
 public class OptionalValueRemoved extends ModificationEvent {
        
        public OptionalValueRemoved() {}
-\r
-       public OptionalValueRemoved(ChildReference reference) {\r
-               this.reference = reference;\r
-       }\r
+
+       public OptionalValueRemoved(ChildReference reference) {
+               this.reference = reference;
+       }
        
        @Override
        public OptionalValueRemoved clone(ChildReference newReference) {
@@ -28,11 +28,11 @@ public class OptionalValueRemoved extends ModificationEvent {
                result.reference = newReference;
                return result;
        }               
-\r
-       @Override\r
-       public String toString() {              \r
-               return toRef()+" value removed";\r
-       }\r
+
+       @Override
+       public String toString() {              
+               return toRef()+" value removed";
+       }
        
 }