Skip to content

Commit

Permalink
Merge branch 'hotfix-1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Dec 9, 2021
2 parents f4665bc + 9d79a3e commit c36cc70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>baseCode</name>
<groupId>baseCode</groupId>
<artifactId>baseCode</artifactId>
<version>1.1</version>
<version>1.1.1</version>
<inceptionYear>2003</inceptionYear>
<description>
<![CDATA[Data structures, math and statistics tools, and utilities that are often needed across projects.]]>
Expand Down
3 changes: 2 additions & 1 deletion src/ubic/basecode/ontology/model/OntologyTermImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,9 @@ private void getChildren( boolean direct, Collection<OntologyTerm> work ) {
ExtendedIterator<OntClass> iterator = ontResource.listSubClasses( true );
while ( iterator.hasNext() ) {
OntClass c = iterator.next();
// URI can be null if the ont is a bnode (no idea what it is, but we have to handle this)
// some reasoners will infer owl#Nothing as a subclass of everything
if ( c.getURI().equals( NOTHING ) ) continue;
if ( c.getURI() == null || c.getURI().equals( NOTHING ) ) continue;

if ( USE_PROPER_PART_RESTRICTIONS && c.isRestriction() ) {

Expand Down

0 comments on commit c36cc70

Please sign in to comment.