Skip to content

Instantly share code, notes, and snippets.

@renaro
Last active October 20, 2016 01:56
Show Gist options
  • Save renaro/174821da0246cedd38f3e6201b8bf3ac to your computer and use it in GitHub Desktop.
Save renaro/174821da0246cedd38f3e6201b8bf3ac to your computer and use it in GitHub Desktop.
public boolean validateCredentials(String email, String password){
boolean isCorrectCredentials = server.validadeCredentials(email, password);
if(isCorrectCredentials){
login();
}
return isCorrectCredentials;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment