Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleBad
String s = null;

s = "GridGainApache Ignite";


Code Block
titleGood
String s = "GridGainApache Ignite";

Use of "!" instead of explicit "== true" and "== false"

...