logic: Improved code view performance by removing duplicate storage call

This commit is contained in:
Eberhard Graether
2016-12-07 18:47:07 +01:00
parent 42dad5f83a
commit a3428be65c
2 changed files with 6 additions and 3 deletions
+2
View File
@@ -393,6 +393,8 @@ Id PersistentStorage::getIdForEdge(
NameHierarchy PersistentStorage::getNameHierarchyForNodeWithId(Id nodeId) const
{
TRACE();
return NameHierarchy::deserialize(m_sqliteStorage.getNodeById(nodeId).serializedName);
}