mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Merge branch 'GP-0_ryanmkurtz_PR-7510_sethcg_fix-warning'
This commit is contained in:
commit
93c2a52653
4 changed files with 7 additions and 8 deletions
|
@ -58,7 +58,7 @@ public class WeakHashMap2<K, V> extends AbstractMap<K, V> {
|
|||
return false;
|
||||
}
|
||||
|
||||
WeakValue other = (WeakValue) o;
|
||||
WeakValue<?> other = (WeakValue<?>) o;
|
||||
return get() == other.get();
|
||||
}
|
||||
|
||||
|
@ -231,7 +231,7 @@ public class WeakHashMap2<K, V> extends AbstractMap<K, V> {
|
|||
}
|
||||
|
||||
public K reverseGet(V value) {
|
||||
WeakValue v = WeakValue.create(value, queue);
|
||||
WeakValue<V> v = WeakValue.create(value, queue);
|
||||
return reverseHash.get(v);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue