summaryrefslogtreecommitdiff
path: root/qpid/java/qpid-test-utils/src
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2014-08-19 20:07:48 +0000
committerRobert Godfrey <rgodfrey@apache.org>2014-08-19 20:07:48 +0000
commit451bda18227dccc91a08fe1ade559d0f91be932d (patch)
tree01393f5225dfd000ace782a5b8df95eb69d5d375 /qpid/java/qpid-test-utils/src
parent7520eb94cd61b4ae3d31879102791182210a5302 (diff)
downloadqpid-python-451bda18227dccc91a08fe1ade559d0f91be932d.tar.gz
QPID-6022 : [Java] Fix issues highlighted by code scanning tools
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1618964 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/qpid-test-utils/src')
-rw-r--r--qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java b/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
index 845e7e58c3..74d2f1cf97 100644
--- a/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
+++ b/qpid/java/qpid-test-utils/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
@@ -74,7 +74,7 @@ public class QpidTestCase extends TestCase
String testExcludes = System.getProperty(TEST_EXCLUDES);
//For the maven build, process the test.excludes property
- if(testExcludes != null && exclusionListURIs == "")
+ if(testExcludes != null && "".equals(exclusionListURIs))
{
for (String exclude : testExcludes.split("\\s+"))
{