device-mgt-core/components/apimgt-extensions
Timo Briddigkeit ed07774552 Fixed literal string comparison.
This line is in the form of
String str = ...
str.equals("someOtherString");
//or
str.compareTo("someOtherString");

A NullPointerException may occur if the String variable str is null. If instead the code was restructured to
String str = ...
"someOtherString".equals(str);
//or
"someOtherString".compareTo(str);
that is, call equals() or compareTo() on the string literal, passing the variable as an argument, this exception could never happen as both equals() and compareTo() check for null.
2016-07-15 16:25:31 +02:00
..
org.wso2.carbon.apimgt.annotations [maven-release-plugin] prepare for next development iteration 2016-07-08 19:11:40 +05:30
org.wso2.carbon.apimgt.application.extension Fixed literal string comparison. 2016-07-15 16:25:31 +02:00
org.wso2.carbon.apimgt.application.extension.api Fixed literal string comparison. 2016-07-15 16:25:31 +02:00
org.wso2.carbon.apimgt.webapp.publisher Fixed literal string comparison. 2016-07-15 16:25:31 +02:00
pom.xml [maven-release-plugin] prepare for next development iteration 2016-07-08 19:11:40 +05:30