Removed debug null check and made minor changes to match existing coding style

This commit is contained in:
david-harley 2020-12-22 15:36:35 +10:30
parent 5767853ef0
commit 7eb0487719
7 changed files with 8 additions and 15 deletions

View file

@ -8,7 +8,7 @@ class JsonSyncDataMessage extends JsonDataMessage {
String destination;
JsonSyncDataMessage(SentTranscriptMessage transcriptMessage, final Manager m) {
JsonSyncDataMessage(SentTranscriptMessage transcriptMessage, Manager m) {
super(transcriptMessage.getMessage(), m);
if (transcriptMessage.getDestination().isPresent()) {
this.destination = transcriptMessage.getDestination().get().getLegacyIdentifier();