Skip to content
Snippets Groups Projects
Commit db54fcf3 authored by ribeaudc's avatar ribeaudc
Browse files

fix:

- '*=' is not the same than 'hashCode = hashCode * 37' in some cases.

SVN: 2886
parent b451af74
No related branches found
No related tags found
No related merge requests found
...@@ -189,8 +189,8 @@ public final class ChecksumHandler implements IDataStructureHandler ...@@ -189,8 +189,8 @@ public final class ChecksumHandler implements IDataStructureHandler
public final int hashCode() public final int hashCode()
{ {
int hashCode = 17; int hashCode = 17;
hashCode *= 37 + path.hashCode(); hashCode = hashCode * 37 + path.hashCode();
hashCode *= 37 + checksum.hashCode(); hashCode = hashCode * 37 + checksum.hashCode();
return hashCode; return hashCode;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment