*** empty log message ***
This commit is contained in:
parent
1e2d1d3a90
commit
b1f323a992
|
|
@ -157,13 +157,13 @@ class ClientRepository(DirectObject.DirectObject):
|
|||
distObj = cdc.constructor(self)
|
||||
# Assign it an Id
|
||||
distObj.doId = doId
|
||||
# Put the new do in both dictionaries
|
||||
self.doId2do[doId] = distObj
|
||||
self.doId2cdc[doId] = cdc
|
||||
# Update the required fields
|
||||
distObj.generateInit() # Only called when constructed
|
||||
distObj.generate()
|
||||
distObj.updateRequiredFields(cdc, di)
|
||||
# Put the new do in both dictionaries
|
||||
self.doId2do[doId] = distObj
|
||||
self.doId2cdc[doId] = cdc
|
||||
distObj.announceGenerate()
|
||||
|
||||
return distObj
|
||||
|
|
@ -204,9 +204,6 @@ class ClientRepository(DirectObject.DirectObject):
|
|||
distObj.generate()
|
||||
distObj.updateRequiredOtherFields(cdc, di)
|
||||
distObj.announceGenerate()
|
||||
# Put the new do in both dictionaries
|
||||
# self.doId2do[doId] = distObj
|
||||
# self.doId2cdc[doId] = cdc
|
||||
|
||||
return distObj
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue