Skip to content

Instantly share code, notes, and snippets.

@subnetmarco
Created March 14, 2012 20:05
Show Gist options
  • Select an option

  • Save subnetmarco/2039121 to your computer and use it in GitHub Desktop.

Select an option

Save subnetmarco/2039121 to your computer and use it in GitHub Desktop.
private void main() {
Long value = null;
printValue(value);
}
private void printValue(Long value) {
if (value != null) {
System.out.println(value.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment