Skip to content
Snippets Groups Projects
Commit f5ee8b26 authored by david_williams's avatar david_williams
Browse files

283792 read properties for versioning tests

parent 99aafb57
No related branches found
No related tags found
No related merge requests found
......@@ -540,10 +540,11 @@ public class BuildTests extends TestCase {
}
private boolean validValue(String arg) {
if (arg != null && arg.length() > 0)
return true;
else
return false;
boolean result = false;
if (arg != null && arg.length() > 0) {
result = true;
}
return result;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment