0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 03:52:17 +02:00

java: Change SignalProtocolAddress.toString to "UUID.device"

...instead of "UUID:device". Neither is inherently better than the
other but Desktop and the Rust library both use "UUID.device" already.
This commit is contained in:
Jordan Rose 2021-10-19 13:03:26 -07:00
parent 64f98ed87d
commit ab48672d68

View File

@ -38,7 +38,7 @@ public class SignalProtocolAddress implements NativeHandleGuard.Owner {
@Override
public String toString() {
return getName() + ":" + getDeviceId();
return getName() + "." + getDeviceId();
}
@Override