Skip to content

Commit ac576d0

Browse files
committed
remove unnecessary cast
1 parent 8f67fb9 commit ac576d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/htmlunit/util/OrderedFastHashMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ private void readObject(final ObjectInputStream aInputStream) throws ClassNotFou
668668

669669
final K key = (K) srcData[pos];
670670
final V value = (V) srcData[pos + 1];
671-
put((K) key, value);
671+
put(key, value);
672672
}
673673
}
674674

0 commit comments

Comments
 (0)