]> nmode's Git Repositories - signal-cli/blobdiff - lib/src/main/java/org/asamk/signal/manager/HandleAction.java
Use var instead of explicit types
[signal-cli] / lib / src / main / java / org / asamk / signal / manager / HandleAction.java
index 8338e4e67a05e6b9e2a8cfa312422a1473415bcf..9d119c11be650410c295f5698d89d2b2bd007248 100644 (file)
@@ -29,7 +29,7 @@ class SendReceiptAction implements HandleAction {
     public boolean equals(final Object o) {
         if (this == o) return true;
         if (o == null || getClass() != o.getClass()) return false;
-        final SendReceiptAction that = (SendReceiptAction) o;
+        final var that = (SendReceiptAction) o;
         return timestamp == that.timestamp && address.equals(that.address);
     }
 
@@ -110,7 +110,7 @@ class SendGroupInfoRequestAction implements HandleAction {
         if (this == o) return true;
         if (o == null || getClass() != o.getClass()) return false;
 
-        final SendGroupInfoRequestAction that = (SendGroupInfoRequestAction) o;
+        final var that = (SendGroupInfoRequestAction) o;
 
         if (!address.equals(that.address)) return false;
         return groupId.equals(that.groupId);
@@ -118,7 +118,7 @@ class SendGroupInfoRequestAction implements HandleAction {
 
     @Override
     public int hashCode() {
-        int result = address.hashCode();
+        var result = address.hashCode();
         result = 31 * result + groupId.hashCode();
         return result;
     }
@@ -144,7 +144,7 @@ class SendGroupInfoAction implements HandleAction {
         if (this == o) return true;
         if (o == null || getClass() != o.getClass()) return false;
 
-        final SendGroupInfoAction that = (SendGroupInfoAction) o;
+        final var that = (SendGroupInfoAction) o;
 
         if (!address.equals(that.address)) return false;
         return groupId.equals(that.groupId);
@@ -152,7 +152,7 @@ class SendGroupInfoAction implements HandleAction {
 
     @Override
     public int hashCode() {
-        int result = address.hashCode();
+        var result = address.hashCode();
         result = 31 * result + groupId.hashCode();
         return result;
     }