Commit 06ebfb2c authored by Ioannis Papagiannopoulos's avatar Ioannis Papagiannopoulos Committed by Jérome Perrin

CoreObject s getReceiver/GiverObject methods cleaned up

parent 5b41b9bc
...@@ -204,7 +204,7 @@ class CoreObject(Process): ...@@ -204,7 +204,7 @@ class CoreObject(Process):
# =================== get the giver object in a getEntity transaction. ========================= # =================== get the giver object in a getEntity transaction. =========================
def getGiverObject(self): def getGiverObject(self):
return self.giver return self.giver.getActiveObject()
# ============== get the giver object queue in a getEntity transaction. ======================== # ============== get the giver object queue in a getEntity transaction. ========================
...@@ -213,7 +213,7 @@ class CoreObject(Process): ...@@ -213,7 +213,7 @@ class CoreObject(Process):
# ============== get the receiver object in a removeEntity transaction. ======================= # ============== get the receiver object in a removeEntity transaction. =======================
def getReceiverObject(self): def getReceiverObject(self):
return self.receiver return self.receiver.getActiveObject()
# ========== get the receiver object queue in a removeEntity transaction. ====================== # ========== get the receiver object queue in a removeEntity transaction. ======================
def getReceiverObjectQueue(self): def getReceiverObjectQueue(self):
......
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