if (Boolean.parseBoolean(!Boolean.toString("false")) != Boolean.parseBoolean(!Boolean.toString("true"))){
Boolean.toString() takes a boolean, you are giving it Strings. Also, you are using the "!" operator before Boolean.toString() which returns a String, not a boolean.
Comments on Profile Post by nverdier