]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/image/impl/AbstractProviderProxy.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / image / impl / AbstractProviderProxy.java
index 1ee76af72a4223cb037adba38feea666e34e59a7..d42349670d60a2105c31a39e251eff99bfcd4742 100644 (file)
@@ -1,33 +1,33 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in 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.g2d.image.impl;\r
-\r
-import org.simantics.g2d.image.Image;\r
-import org.simantics.utils.datastructures.cache.IProvider;\r
-\r
-public abstract class AbstractProviderProxy implements IProvider<Image> {\r
-    protected IProvider<Image> source;\r
-    AbstractProviderProxy(IProvider<Image> source) {\r
-        this.source = source;\r
-    }\r
-    @Override\r
-    public int hashCode() {\r
-        return source.hashCode() + getClass().hashCode();\r
-    }\r
-    @Override\r
-    public boolean equals(Object obj) {\r
-        if (obj == null) return false;\r
-        if (!obj.getClass().equals(getClass())) return false;\r
-        return ((AbstractProviderProxy)obj).source.equals(source);\r
-    }\r
-}\r
-\r
+/*******************************************************************************
+ * Copyright (c) 2007, 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.g2d.image.impl;
+
+import org.simantics.g2d.image.Image;
+import org.simantics.utils.datastructures.cache.IProvider;
+
+public abstract class AbstractProviderProxy implements IProvider<Image> {
+    protected IProvider<Image> source;
+    AbstractProviderProxy(IProvider<Image> source) {
+        this.source = source;
+    }
+    @Override
+    public int hashCode() {
+        return source.hashCode() + getClass().hashCode();
+    }
+    @Override
+    public boolean equals(Object obj) {
+        if (obj == null) return false;
+        if (!obj.getClass().equals(getClass())) return false;
+        return ((AbstractProviderProxy)obj).source.equals(source);
+    }
+}
+