Bug: Useless control flow to next line in

com.bwssystems.HABridge.plugins.http.HttpTestHandler.updateTheData(String,
String)

This method contains a useless control flow statement in which control
flow follows to the same or following line regardless of whether or not
the branch is taken. Often, this is caused by inadvertently using an
empty statement as the body of an if statement, e.g.:
This commit is contained in:
gaudryc
2019-01-06 19:18:27 +01:00
parent f8349f12bc
commit d9916b7662

View File

@@ -32,7 +32,7 @@ public class HttpTestHandler extends HTTPHandler {
}
else {
for(NameValue aTest:this.theData) {
if(aTest.getName().equals(compareValue));
if(aTest.getName().equals(compareValue))
aTest.setValue(testData);
}
}