Skip to content

Commit

Permalink
Remove hashcode leftovers from SA
Browse files Browse the repository at this point in the history
  • Loading branch information
rkennke committed Aug 22, 2024
1 parent 18e08c1 commit 1578ffa
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ private static synchronized void initialize(TypeDataBase db) throws WrongTypeExc
ageMaskInPlace = db.lookupLongConstant("markWord::age_mask_in_place").longValue();
hashMask = db.lookupLongConstant("markWord::hash_mask").longValue();
hashMaskInPlace = db.lookupLongConstant("markWord::hash_mask_in_place").longValue();
hashMaskCompactInPlace = db.lookupLongConstant("markWord::hash_mask_compact_in_place").longValue();
lockedValue = db.lookupLongConstant("markWord::locked_value").longValue();
unlockedValue = db.lookupLongConstant("markWord::unlocked_value").longValue();
monitorValue = db.lookupLongConstant("markWord::monitor_value").longValue();
Expand Down Expand Up @@ -94,7 +93,6 @@ private static synchronized void initialize(TypeDataBase db) throws WrongTypeExc
private static long ageMaskInPlace;
private static long hashMask;
private static long hashMaskInPlace;
private static long hashMaskCompactInPlace;

private static long lockedValue;
private static long unlockedValue;
Expand Down

0 comments on commit 1578ffa

Please sign in to comment.