Skip to content

Commit

Permalink
Suppress external class references in breadcrumbs (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardWallis committed Jul 24, 2015
1 parent 6d1045b commit 6463679
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sdoapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,7 @@ def BreadCrumbs(self, node, layers):

#Walk up the stack, appending crumbs & create new (duplicating crumbs already identified) if more than one parent found
def WalkCrumbs(self, node, cstack, layers):
log.info("node: %s" % node.id)
if "http://" in node.id:
if "http://" in node.id: #Suppress external class references
return

cstack.append(node)
Expand Down

0 comments on commit 6463679

Please sign in to comment.