*** empty log message ***

This commit is contained in:
Jesse Schell 2001-04-13 23:03:55 +00:00
parent 1e2d1d3a90
commit b1f323a992
1 changed files with 3 additions and 6 deletions

View File

@ -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