aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge
diff options
context:
space:
mode:
authorAdam Domurad <[email protected]>2012-05-17 14:14:03 -0400
committerAdam Domurad <[email protected]>2012-05-17 14:14:03 -0400
commitb42384fe344b0af2a54eb00735f7d59b6ba1ab6e (patch)
tree1dc30db08c963ecdd9fbe5c7186a007f110b8057 /netx/net/sourceforge
parent0c598ca6848b417c79245a971f26570d05144132 (diff)
Went through the source of IcedTeaWeb with FindBugs and went over all reported cases of == being used to compare String's. Some usage cases were valid (eg, .equals eventually called, magic String value). I noted one such usage case. The others were changed to .equals calls.
Diffstat (limited to 'netx/net/sourceforge')
-rw-r--r--netx/net/sourceforge/jnlp/JNLPFile.java2
-rw-r--r--netx/net/sourceforge/jnlp/SecurityDesc.java4
-rw-r--r--netx/net/sourceforge/jnlp/Version.java5
3 files changed, 6 insertions, 5 deletions
diff --git a/netx/net/sourceforge/jnlp/JNLPFile.java b/netx/net/sourceforge/jnlp/JNLPFile.java
index 714ff7e..5ddb989 100644
--- a/netx/net/sourceforge/jnlp/JNLPFile.java
+++ b/netx/net/sourceforge/jnlp/JNLPFile.java
@@ -208,7 +208,7 @@ public class JNLPFile {
//(i.e. If the jnlp file being launched exist locally, but it
//originated from a website, then download the one from the website
//into the cache).
- if (sourceLocation != null && location.getProtocol() == "file") {
+ if (sourceLocation != null && "file".equals(location.getProtocol())) {
openURL(sourceLocation, version, policy);
}
diff --git a/netx/net/sourceforge/jnlp/SecurityDesc.java b/netx/net/sourceforge/jnlp/SecurityDesc.java
index abb61bd..9455c9a 100644
--- a/netx/net/sourceforge/jnlp/SecurityDesc.java
+++ b/netx/net/sourceforge/jnlp/SecurityDesc.java
@@ -202,7 +202,7 @@ public class SecurityDesc {
PermissionCollection permissions = getSandBoxPermissions();
// discard sandbox, give all
- if (type == ALL_PERMISSIONS) {
+ if (ALL_PERMISSIONS.equals(type)) {
permissions = new Permissions();
if (customTrustedPolicy == null) {
permissions.add(new AllPermission());
@@ -213,7 +213,7 @@ public class SecurityDesc {
}
// add j2ee to sandbox if needed
- if (type == J2EE_PERMISSIONS)
+ if (J2EE_PERMISSIONS.equals(type))
for (int i = 0; i < j2eePermissions.length; i++)
permissions.add(j2eePermissions[i]);
diff --git a/netx/net/sourceforge/jnlp/Version.java b/netx/net/sourceforge/jnlp/Version.java
index eeb4536..99e7cd6 100644
--- a/netx/net/sourceforge/jnlp/Version.java
+++ b/netx/net/sourceforge/jnlp/Version.java
@@ -230,6 +230,7 @@ public class Version {
Integer number2 = Integer.valueOf(0);
// compare as integers
+ // for normalization key, compare exact object, not using .equals
try {
if (!(part1 == emptyString)) // compare to magic normalization key
number1 = Integer.valueOf(part1);
@@ -242,9 +243,9 @@ public class Version {
// means to compare as strings
}
- if (part1 == emptyString)
+ if (part1 == emptyString) // compare to magic normalization key
part1 = "";
- if (part2 == emptyString)
+ if (part2 == emptyString) // compare to magic normalization key
part2 = "";
return part1.compareTo(part2);