Remove the unused destination property from IncomingMessage

This commit is contained in:
Jon Chambers
2022-07-27 14:02:59 -04:00
committed by Jon Chambers
parent 3d875f1ce5
commit e28f1e8ceb
4 changed files with 8 additions and 8 deletions

View File

@@ -4,6 +4,6 @@
*/
package org.whispersystems.textsecuregcm.entities;
public record IncomingMessage(int type, String destination, long destinationDeviceId, int destinationRegistrationId,
public record IncomingMessage(int type, long destinationDeviceId, int destinationRegistrationId,
String content) {
}