org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/ui/deployment/bluetooth/BluetoothRule.java
changeset 461 7a8f9fa8d278
parent 460 c0bff5ed874c
child 462 cdc4995b1677
--- a/org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/ui/deployment/bluetooth/BluetoothRule.java	Thu Jul 29 15:59:01 2010 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-package org.symbian.tools.mtw.ui.deployment.bluetooth;
-
-import org.eclipse.core.runtime.jobs.ISchedulingRule;
-
-public class BluetoothRule implements ISchedulingRule {
-    public static final ISchedulingRule INSTANCE = new BluetoothRule();
-
-    private BluetoothRule() {
-        // No instantiation
-    }
-
-    public boolean contains(ISchedulingRule rule) {
-        return isConflicting(rule);
-    }
-
-    public boolean isConflicting(ISchedulingRule rule) {
-        return rule instanceof BluetoothRule;
-    }
-
-}