Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/dsf
diff options
context:
space:
mode:
authorMarc Khouzam2015-02-13 21:14:09 +0000
committerMarc Khouzam2015-02-13 21:14:09 +0000
commit002e422dac613ff2bebc7bb5e51d43abb47db44b (patch)
treebe4163ecc9087ed78c838f645d7266f2250e243d /dsf
parentae2b10f980d0ae9f0246b87afc36a0df546ea018 (diff)
downloadorg.eclipse.cdt-002e422dac613ff2bebc7bb5e51d43abb47db44b.tar.gz
org.eclipse.cdt-002e422dac613ff2bebc7bb5e51d43abb47db44b.tar.xz
org.eclipse.cdt-002e422dac613ff2bebc7bb5e51d43abb47db44b.zip
Remove unused private method
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Diffstat (limited to 'dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Query.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Query.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Query.java
index f38d729bf33..c19726aec5b 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Query.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Query.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2010 Wind River Systems and others.
+ * Copyright (c) 2006, 2015 Wind River Systems and others.
* 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
@@ -84,10 +84,6 @@ abstract public class Query<V> extends DsfRunnable
fExecuted = true;
return true;
}
-
- public synchronized boolean isExecuted() {
- return fExecuted;
- }
};
private final QueryRm fRm = new QueryRm();

Back to the top