Versions Compared

Key

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

...

Code Block
bgColor#FFCCCC
{ // localLocal scope
...
int[] buffer = new int[100];
doSomething(buffer);
buffer = null  // No need to explicitly assign null
...
} 

...

Code Block
bgColor#ccccff
{ // limitLimit the scope of buffer
  int[] buffer = new int[100];
  doSomething(buffer);
}

...