mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-06 07:46:08 +00:00
Clean up
This commit is contained in:
@@ -42,12 +42,9 @@ public class KMap<K, V> extends ConcurrentHashMap<K, V> {
|
||||
put(gMap);
|
||||
}
|
||||
|
||||
public K getKey(V value)
|
||||
{
|
||||
for(KeyPair<K,V> i : keypair())
|
||||
{
|
||||
if(i.getV().equals(value))
|
||||
{
|
||||
public K getKey(V value) {
|
||||
for (KeyPair<K, V> i : keypair()) {
|
||||
if (i.getV().equals(value)) {
|
||||
return i.getK();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user