Skip to content

Commit 1d56439

Browse files
author
Quintin Willison
committed
Add toString() implementation.
1 parent 6e7f5b8 commit 1d56439

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

android/src/main/java/io/ably/lib/types/RegistrationToken.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,12 @@ public String toName() {
3333
return name().toLowerCase();
3434
}
3535
}
36+
37+
@Override
38+
public String toString() {
39+
return "RegistrationToken{" +
40+
"type=" + type +
41+
", token='" + token + '\'' +
42+
'}';
43+
}
3644
}

0 commit comments

Comments
 (0)