Whitespace cleanup

This commit is contained in:
Mark DePristo 2011-09-09 14:23:13 -04:00
parent 06cb20f2a5
commit 87dc5cfb24
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ public class GenomeLoc implements Comparable<GenomeLoc>, Serializable, HasGenome
@Override
public int hashCode() {
return (int)( start << 16 + stop << 4 + contigIndex );
return start << 16 | stop << 4 | contigIndex;
}