Advertisement
redrainyskies

s.equals(null)

Jul 2nd, 2018
2,297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. /**
  2.  * Returns info about installed applications.
  3.  * @param appname the name of the application. Use null to get info about all applications.
  4.  */
  5. public String appInfo(String appname)
  6. {
  7.     if (appname.equals(null))
  8.     //...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement