Cleanup (code duplication)

GitOrigin-RevId: fbbfa0160fd9169e5cdc8688763756d46482e06b
This commit is contained in:
Roman Shevchenko
2023-11-28 15:10:19 +00:00
committed by intellij-monorepo-bot
parent db541de9b9
commit eb27d57541
@@ -263,7 +263,7 @@ public abstract class PatchAction {
@Override
public int hashCode() {
int result = Objects.hashCode(myPath);
result = 31 * result + (int)(myChecksum ^ (myChecksum >>> 32));
result = 31 * result + Long.hashCode(myChecksum);
return result;
}
}