Skip to content

Commit

Permalink
Merge branch 'hotfix-1.1.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Mar 27, 2023
2 parents 3bd83fe + 8ebb4ed commit 27bb17c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 24 deletions.
23 changes: 1 addition & 22 deletions 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.11</version>
<version>1.1.12</version>
<inceptionYear>2003</inceptionYear>
<description>
<![CDATA[Data structures, math and statistics tools, and utilities that are often needed across projects.]]>
Expand Down Expand Up @@ -402,16 +402,6 @@
<artifactId>maven-site-plugin</artifactId>
<version>3.9.1</version>
</plugin>
<plugin>
<!-- used when running cobertura outside of the 'site' plugin call. -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<outputDirectory>${cobertura.outputDirectory}</outputDirectory>
<check/>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -490,17 +480,6 @@
<targetJdk>1.7</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<!-- seems we need something here when running 'mvn site' -->
<check>
<haltOnFailure>false</haltOnFailure>
</check>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,8 @@ private void initSearchByAlternativeId() {
private OntologyTerm getTermInternal( String uri ) {
return termCache.computeIfAbsent( uri, u -> {
OntClass ontCls = model.getOntClass( u );
// bnode
if ( ontCls.getURI() == null ) {
// null or bnode
if ( ontCls == null || ontCls.getURI() == null ) {
return null;
}
return new OntologyTermImpl( ontCls );
Expand Down

0 comments on commit 27bb17c

Please sign in to comment.