diff options
author | Adam Domurad <[email protected]> | 2012-05-17 14:14:03 -0400 |
---|---|---|
committer | Adam Domurad <[email protected]> | 2012-05-17 14:14:03 -0400 |
commit | b42384fe344b0af2a54eb00735f7d59b6ba1ab6e (patch) | |
tree | 1dc30db08c963ecdd9fbe5c7186a007f110b8057 /plugin/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java | |
parent | 0c598ca6848b417c79245a971f26570d05144132 (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/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java')
-rw-r--r-- | plugin/icedteanp/java/sun/applet/GetMemberPluginCallRequest.java | 2 |
1 files changed, 1 insertions, 1 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); } |