Sho SHIMIZU
Committed by Ray Milkey

Remove code duplication

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