Skip to content

Commit

Permalink
remove unnecessary cast
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Feb 9, 2024
1 parent 8f67fb9 commit ac576d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/htmlunit/util/OrderedFastHashMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ private void readObject(final ObjectInputStream aInputStream) throws ClassNotFou

final K key = (K) srcData[pos];
final V value = (V) srcData[pos + 1];
put((K) key, value);
put(key, value);
}
}

Expand Down

0 comments on commit ac576d0

Please # to comment.