17

return (this.isBad) ? true: false;

Comments
  • 2
    @rtfm you just pushed further the knife stabbing at my eye...
  • 9
    return String (MessageDigest.getInstance("MD5").digest (Boolean (this.isBad ()).toStting ().getBytes ())).equals (String (MessageDigest.getInstance("MD5").digest (Boolean.TRUE.toString ().getBytes)) ? !!Boolean.True : Boolean (!true);

    My Masterpiece
  • 4
    @Awlex you are one of the rare guys that get paid by typed characters, right?
  • 3
    I know people who just do

    return this.isBad

    This always makes me so angry /s
  • 0
    @Codex404 I'd rather have
    return true

    What could go wrong? :D
Add Comment