Skip to content

Commit

Permalink
Merge pull request #404 from jburel/issue_403
Browse files Browse the repository at this point in the history
adjust shift logic
  • Loading branch information
jburel authored Dec 8, 2023
2 parents 4aa2fc4 + 0efac02 commit a34e588
Showing 1 changed file with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* org.openmicroscopy.shoola.util.roi.model.util.Coord3D
*
*------------------------------------------------------------------------------
* Copyright (C) 2006-2007 University of Dundee. All rights reserved.
* Copyright (C) 2006-2023 University of Dundee. All rights reserved.
*
*
* This program is free software; you can redistribute it and/or modify
Expand All @@ -22,13 +22,9 @@
*/
package org.openmicroscopy.shoola.util.roi.model.util;

//Java imports
import java.io.Serializable;
import java.util.Comparator;

//Third-party libraries

//Application-internal dependencies
import org.openmicroscopy.shoola.util.roi.model.util.Coord3D;

/**
Expand All @@ -39,9 +35,6 @@
* @author Donald MacDonald     
* <a href="mailto:[email protected]">[email protected]</a>
* @version 3.0
* <small>
* (<b>Internal version:</b> $Revision: $Date: $)
* </small>
* @since OME3.0
*/
public class Coord3D
Expand Down Expand Up @@ -144,7 +137,7 @@ public int compare(Object o1, Object o2)
*/
public int hashCode()
{
int value = z<<ZTBITSPLIT+t;
int value = (z<<ZTBITSPLIT)+t;
return value;
}

Expand All @@ -158,5 +151,3 @@ public String toString()
}

}


0 comments on commit a34e588

Please sign in to comment.