Show eci in auth 3ds data (#4)

This commit is contained in:
Pavel Popov 2018-11-29 13:10:28 +03:00 committed by GitHub
parent eb2ef54160
commit 6a11cb90c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -98,6 +98,7 @@ cmake-build-release/
*.iml
# IntelliJ
out/
.idea/
# mpeltonen/sbt-idea plugin
.idea_modules/

View File

@ -43,7 +43,7 @@ public class Auth3DS extends Auth {
public String toString() {
return "Auth3DS{" +
"cryptogram='" + (cryptogram == null ? null : "***") + '\'' +
", eci='" + (eci == null ? null : "***") + '\'' +
", eci='" + eci + '\'' +
"}";
}
}