Skip to content

Commit 7a0d4eb

Browse files
author
oleg
committed
Added toString method for DeviceRegistrationResult.
1 parent 79df96f commit 7a0d4eb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/com/backendless/push/DeviceRegistrationResult.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,10 @@ DeviceRegistrationResult setChannelRegistrations( Map<String, String> channelReg
4040
this.channelRegistrations = channelRegistrations;
4141
return this;
4242
}
43+
44+
@Override
45+
public String toString()
46+
{
47+
return "DeviceRegistrationResult{" + "deviceToken='" + deviceToken + '\'' + ", channelRegistrations=" + channelRegistrations + '}';
48+
}
4349
}

0 commit comments

Comments
 (0)