Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2009-10-02 08:31:45 +0000
committerDani Megert2009-10-02 08:31:45 +0000
commit62acbc1f98edb3cc7e0049a7c0fb12acd1a7157a (patch)
tree3ee7aa1fa9909f27c1b87b2a498e1fac2a715fca /org.eclipse.search.tests/src
parentd82de9c93cdeaa00863c9c03f5f4aa48215b7b7a (diff)
downloadeclipse.platform.text-62acbc1f98edb3cc7e0049a7c0fb12acd1a7157a.tar.gz
eclipse.platform.text-62acbc1f98edb3cc7e0049a7c0fb12acd1a7157a.tar.xz
eclipse.platform.text-62acbc1f98edb3cc7e0049a7c0fb12acd1a7157a.zip
Don't create OK status objects.v20091006-0800
Diffstat (limited to 'org.eclipse.search.tests/src')
-rw-r--r--org.eclipse.search.tests/src/org/eclipse/search/core/tests/LongQuery.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.search.tests/src/org/eclipse/search/core/tests/LongQuery.java b/org.eclipse.search.tests/src/org/eclipse/search/core/tests/LongQuery.java
index d45a2d15379..8f7697a3e10 100644
--- a/org.eclipse.search.tests/src/org/eclipse/search/core/tests/LongQuery.java
+++ b/org.eclipse.search.tests/src/org/eclipse/search/core/tests/LongQuery.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2009 IBM Corporation 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
@@ -34,7 +34,7 @@ public class LongQuery extends NullQuery {
}
}
fIsRunning= false;
- return new Status(IStatus.OK, "some plugin", 0, "No message", null);
+ return Status.OK_STATUS;
}
public boolean isRunning() {

Back to the top