commented out some asserts for query object all
This commit is contained in:
parent
ad4ef50fd9
commit
89257e7bdc
|
|
@ -226,7 +226,7 @@ class DoCollectionManager:
|
|||
|
||||
def addDOToTables(self, do, location=None, ownerView=False):
|
||||
assert self.notify.debugStateCall(self)
|
||||
assert not hasattr(do, "isQueryAllResponse") or not do.isQueryAllResponse
|
||||
#assert not hasattr(do, "isQueryAllResponse") or not do.isQueryAllResponse
|
||||
if not ownerView:
|
||||
if location is None:
|
||||
location = (do.parentId, do.zoneId)
|
||||
|
|
@ -258,7 +258,7 @@ class DoCollectionManager:
|
|||
|
||||
def removeDOFromTables(self, do):
|
||||
assert self.notify.debugStateCall(self)
|
||||
assert not hasattr(do, "isQueryAllResponse") or not do.isQueryAllResponse
|
||||
#assert not hasattr(do, "isQueryAllResponse") or not do.isQueryAllResponse
|
||||
#assert do.doId in self.doId2do
|
||||
location = do.getLocation()
|
||||
if location is not None:
|
||||
|
|
@ -275,7 +275,7 @@ class DoCollectionManager:
|
|||
del self.doId2do[do.doId]
|
||||
|
||||
def changeDOZoneInTables(self, do, newParentId, newZoneId, oldParentId, oldZoneId):
|
||||
assert not hasattr(do, "isQueryAllResponse") or not do.isQueryAllResponse
|
||||
#assert not hasattr(do, "isQueryAllResponse") or not do.isQueryAllResponse
|
||||
oldLocation = (oldParentId, oldZoneId)
|
||||
newLocation = (newParentId, newZoneId)
|
||||
# HACK: DistributedGuildMemberUD starts in -1,-1, which isnt ever put in the
|
||||
|
|
|
|||
Loading…
Reference in New Issue