UUIDs should be positive

pull/14/head
Sam Bosley 12 years ago
parent 9dd6c58068
commit b6902e6c90

@ -53,7 +53,7 @@ public class UUIDHelper {
proofText = d + "," + s; //$NON-NLS-1$
uuid = bcryptToLong(proofText);
} while (uuid >= 0 && uuid < MIN_UUID);
} while (uuid < MIN_UUID);
return Pair.create(uuid, proofText);
}

Loading…
Cancel
Save