mirror of https://github.com/cabaletta/baritone
Fix Registry.unregister
This commit is contained in:
parent
93501248cd
commit
e1095962a1
|
@ -84,7 +84,7 @@ public class Registry<V> {
|
||||||
* @param entry The entry to unregister.
|
* @param entry The entry to unregister.
|
||||||
*/
|
*/
|
||||||
public void unregister(V entry) {
|
public void unregister(V entry) {
|
||||||
if (registered(entry)) {
|
if (!registered(entry)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_entries.remove(entry);
|
_entries.remove(entry);
|
||||||
|
|
Loading…
Reference in New Issue