]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics/src/org/simantics/ObjectIdentitySchedulingRule.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / ObjectIdentitySchedulingRule.java
index a455d4b4dd95db03d3e6ae94ea53a00c880c3256..9902dd0a9f36b323592e32bb827259909614af7d 100644 (file)
@@ -1,39 +1,39 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2011 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;\r
-\r
-import org.eclipse.core.runtime.jobs.ISchedulingRule;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class ObjectIdentitySchedulingRule implements ISchedulingRule {\r
-\r
-    private final Object object;\r
-\r
-    public ObjectIdentitySchedulingRule(Object object) {\r
-        if (object == null)\r
-            throw new NullPointerException("null object");\r
-        this.object = object;\r
-    }\r
-\r
-    public boolean contains(ISchedulingRule rule) {\r
-        if (rule instanceof ObjectIdentitySchedulingRule)\r
-            return object.equals(((ObjectIdentitySchedulingRule) rule).object);\r
-        return false;\r
-    }\r
-\r
-    public boolean isConflicting(ISchedulingRule rule) {\r
-        return contains(rule);\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2011 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;
+
+import org.eclipse.core.runtime.jobs.ISchedulingRule;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class ObjectIdentitySchedulingRule implements ISchedulingRule {
+
+    private final Object object;
+
+    public ObjectIdentitySchedulingRule(Object object) {
+        if (object == null)
+            throw new NullPointerException("null object");
+        this.object = object;
+    }
+
+    public boolean contains(ISchedulingRule rule) {
+        if (rule instanceof ObjectIdentitySchedulingRule)
+            return object.equals(((ObjectIdentitySchedulingRule) rule).object);
+        return false;
+    }
+
+    public boolean isConflicting(ISchedulingRule rule) {
+        return contains(rule);
+    }
+
+}