File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public static void RegisterUpdateableObject(IUpdateable obj)
6363
//Unregister
6464
public static void UnregisterUpdateableObject(IUpdateable obj)
6565
{
66-
if (!updateableObjects.Contains(obj))
66+
if (updateableObjects.Contains(obj))
6767
{
6868
updateableObjects.Remove(obj);
6969
}

0 commit comments

Comments
 (0)