Merge pull request #3743 from ZacSharp/patch-11
Fix Registry.unregister
This commit is contained in:
commit
e2538abcb1
@ -84,7 +84,7 @@ public class Registry<V> {
|
||||
* @param entry The entry to unregister.
|
||||
*/
|
||||
public void unregister(V entry) {
|
||||
if (registered(entry)) {
|
||||
if (!registered(entry)) {
|
||||
return;
|
||||
}
|
||||
_entries.remove(entry);
|
||||
|
Loading…
Reference in New Issue
Block a user