Committed by
Ray Milkey
Remove code duplication
Change-Id: I428677343fe71aded4156e5fc9b84a9d994a6bae
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -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 | /** | ... | ... |
-
Please register or login to post a comment