Sho SHIMIZU
Committed by Ray Milkey

Remove code duplication

Change-Id: I428677343fe71aded4156e5fc9b84a9d994a6bae
...@@ -113,7 +113,7 @@ public abstract class Intent implements BatchOperationTarget { ...@@ -113,7 +113,7 @@ public abstract class Intent implements BatchOperationTarget {
113 return false; 113 return false;
114 } 114 }
115 final Intent other = (Intent) obj; 115 final Intent other = (Intent) obj;
116 - return this.id().equals(((Intent) obj).id()); 116 + return this.id().equals(other.id());
117 } 117 }
118 118
119 /** 119 /**
......