remove debug

This commit is contained in:
Pfeil, Scott Robert 2019-06-27 10:24:35 -04:00
parent 868593aabe
commit 5a9e1a9a93

View File

@ -40,7 +40,6 @@ open class MoleculeListTemplate: ThreeLayerTableViewController {
return return
} }
for moleculeInfo in moleculesInfo { for moleculeInfo in moleculesInfo {
print(moleculeInfo.identifier)
tableView?.register(moleculeInfo.class, forCellReuseIdentifier: moleculeInfo.identifier) tableView?.register(moleculeInfo.class, forCellReuseIdentifier: moleculeInfo.identifier)
} }
} }
@ -50,7 +49,6 @@ open class MoleculeListTemplate: ThreeLayerTableViewController {
let estimatedHeight = moleculeInfo.class.estimatedHeight?(forRow: moleculeInfo.molecule, delegateObject: delegateObject() as? MVMCoreUIDelegateObject) else { let estimatedHeight = moleculeInfo.class.estimatedHeight?(forRow: moleculeInfo.molecule, delegateObject: delegateObject() as? MVMCoreUIDelegateObject) else {
return 0 return 0
} }
print("height :" + moleculeInfo.class.description() + " :" + estimatedHeight.description)
return estimatedHeight return estimatedHeight
} }