Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-04-25 16:41:43 +0000
committerUwe Stieber2012-04-25 16:41:43 +0000
commita8f0509c82b4047cf398b27ad61916fee788f77f (patch)
treea0f1933ce528f51facc320572bd3f48481b70a69 /target_explorer/plugins/org.eclipse.tcf.te.runtime
parentac996bb47b63d2bd693fe4199d8b46b0060a24c1 (diff)
downloadorg.eclipse.tcf-a8f0509c82b4047cf398b27ad61916fee788f77f.tar.gz
org.eclipse.tcf-a8f0509c82b4047cf398b27ad61916fee788f77f.tar.xz
org.eclipse.tcf-a8f0509c82b4047cf398b27ad61916fee788f77f.zip
Target Explorer: More findbugs fixes
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java
index 1b1cf7ec7..ed3340e61 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/callback/Callback.java
@@ -38,7 +38,7 @@ public class Callback extends PropertiesContainer implements ICallback {
* Property: Asynchronous operations can store a result to the callback
* object they invoke once the operation has been finished.
*/
- protected final String PROPERTY_RESULT = "result"; //$NON-NLS-1$
+ protected static final String PROPERTY_RESULT = "result"; //$NON-NLS-1$
private static final String[] PROPERTY_KEYS_NOT_TO_COPY = {

Back to the top