54555657585960616263
if (!(o instanceof ShortCharPair)) { return false; } ShortCharPair that = (ShortCharPair) o; return (this.one == that.getOne()) && (this.two == that.getTwo()); }
299930003001300230033004300530063007
short[] keys = ShortCharHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } ShortCharPair result = PrimitiveTuples.pair(keys[this.position], ShortCharHashMap.this.values[this.position]); this.position++; return result; }