Skip to content

Commit

Permalink
Fixes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewhorridge committed May 27, 2014
1 parent 74f61d3 commit 55d9731
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -36,6 +36,7 @@ protected OWLReasoner getReasoner() {
public Set<OWLObjectProperty> getChildren(OWLObjectProperty objectProperty) {
Set<OWLObjectPropertyExpression> subs = getReasoner().getSubObjectProperties(objectProperty, true).getFlattened();
subs.remove(objectProperty);
subs.remove(mngr.getOWLDataFactory().getOWLBottomObjectProperty());
Set<OWLObjectProperty> children = new HashSet<OWLObjectProperty>();
for (OWLObjectPropertyExpression p : subs) {
if (p instanceof OWLObjectProperty) {
Expand Down

0 comments on commit 55d9731

Please sign in to comment.