Commit 5b41b9bc authored by Georgios Dagkakis's avatar Georgios Dagkakis Committed by Jérome Perrin

minor cleanup in CoreObject

parent a7672569
......@@ -209,7 +209,7 @@ class CoreObject(Process):
# ============== get the giver object queue in a getEntity transaction. ========================
def getGiverObjectQueue(self):
return self.getGiverObject().Res.activeQ
return self.getGiverObject().getActiveObjectQueue()
# ============== get the receiver object in a removeEntity transaction. =======================
def getReceiverObject(self):
......@@ -217,7 +217,7 @@ class CoreObject(Process):
# ========== get the receiver object queue in a removeEntity transaction. ======================
def getReceiverObjectQueue(self):
return self.getReceiverObject().Res.activeQ
return self.getReceiverObject().getActiveObjectQueue()
# =======================================================================
# calculates the processing time
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment