aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
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 /plugin
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 'plugin')
-rw-r--r--plugin/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java2
-rw-r--r--plugin/icedteanp/java/sun/applet/PluginCallRequestFactory.java10
2 files changed, 6 insertions, 6 deletions
diff --git a/plugin/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java b/plugin/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java
index 2cea3da..e9b71c2 100644
--- a/plugin/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java
+++ b/plugin/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java
@@ -50,7 +50,7 @@ public class GetMemberPluginCallRequest extends PluginCallRequest {
String[] args = message.split(" ");
// FIXME: Is it even possible to distinguish between null and void
// here?
- if (args[3] != "null" && args[3] != "void")
+ if (!"null".equals(args[3]) && !"void".equals(args[3]))
object = AppletSecurityContextManager.getSecurityContext(0).getObject(Integer.parseInt(args[3]));
setDone(true);
}
diff --git a/plugin/icedteanp/java/sun/applet/PluginCallRequestFactory.java b/plugin/icedteanp/java/sun/applet/PluginCallRequestFactory.java
index d5edc6f..973a324 100644
--- a/plugin/icedteanp/java/sun/applet/PluginCallRequestFactory.java
+++ b/plugin/icedteanp/java/sun/applet/PluginCallRequestFactory.java
@@ -41,15 +41,15 @@ public class PluginCallRequestFactory {
public PluginCallRequest getPluginCallRequest(String id, String message, Long reference) {
- if (id == "member") {
+ if ("member".equals(id)) {
return new GetMemberPluginCallRequest(message, reference);
- } else if (id == "void") {
+ } else if ("void".equals(id)) {
return new VoidPluginCallRequest(message, reference);
- } else if (id == "window") {
+ } else if ("window".equals(id)) {
return new GetWindowPluginCallRequest(message, reference);
- } else if (id == "proxyinfo") {
+ } else if ("proxyinfo".equals(id)) {
return new PluginProxyInfoRequest(message, reference);
- } else if (id == "cookieinfo") {
+ } else if ("cookieinfo".equals(id)) {
return new PluginCookieInfoRequest(message, reference);
} else {
throw new RuntimeException("Unknown plugin call request type requested from factory");