Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created May 1, 2012 21:41
Show Gist options
  • Select an option

  • Save edipofederle/2571666 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/2571666 to your computer and use it in GitHub Desktop.
public void doSomeThing(){
Client client = service.findClientById("1103"); // Pode dar NPE
if(client == null)
// Faça alguma coisa.
String name = client.getName(); // Ops, sem checar por null. NPE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment