Skip to content

Commit

Permalink
add toString method for FingerprintAuthenticationResult (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauin authored Dec 12, 2017
1 parent 17eea5b commit efdd7b9
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,12 @@ public FingerprintResult getResult() {
public boolean isSuccess() {
return result == FingerprintResult.AUTHENTICATED;
}

@Override
public String toString() {
return "FingerprintResult {"
+ "result=" + result.name() + ", "
+ "message=" + message +
"}";
}
}

0 comments on commit efdd7b9

Please sign in to comment.