File tree Expand file tree Collapse file tree
src/ubic/basecode/ontology/providers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 <name >baseCode</name >
66 <groupId >baseCode</groupId >
77 <artifactId >baseCode</artifactId >
8- <version >1.1.11 </version >
8+ <version >1.1.12 </version >
99 <inceptionYear >2003</inceptionYear >
1010 <description >
1111 <![CDATA[ Data structures, math and statistics tools, and utilities that are often needed across projects.]]>
402402 <artifactId >maven-site-plugin</artifactId >
403403 <version >3.9.1</version >
404404 </plugin >
405- <plugin >
406- <!-- used when running cobertura outside of the 'site' plugin call. -->
407- <groupId >org.codehaus.mojo</groupId >
408- <artifactId >cobertura-maven-plugin</artifactId >
409- <version >2.7</version >
410- <configuration >
411- <outputDirectory >${cobertura.outputDirectory} </outputDirectory >
412- <check />
413- </configuration >
414- </plugin >
415405 <plugin >
416406 <groupId >org.apache.maven.plugins</groupId >
417407 <artifactId >maven-javadoc-plugin</artifactId >
490480 <targetJdk >1.7</targetJdk >
491481 </configuration >
492482 </plugin >
493- <plugin >
494- <groupId >org.codehaus.mojo</groupId >
495- <artifactId >cobertura-maven-plugin</artifactId >
496- <version >2.7</version >
497- <configuration >
498- <!-- seems we need something here when running 'mvn site' -->
499- <check >
500- <haltOnFailure >false</haltOnFailure >
501- </check >
502- </configuration >
503- </plugin >
504483 <plugin >
505484 <groupId >org.codehaus.mojo</groupId >
506485 <artifactId >jdepend-maven-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -466,8 +466,8 @@ private void initSearchByAlternativeId() {
466466 private OntologyTerm getTermInternal ( String uri ) {
467467 return termCache .computeIfAbsent ( uri , u -> {
468468 OntClass ontCls = model .getOntClass ( u );
469- // bnode
470- if ( ontCls .getURI () == null ) {
469+ // null or bnode
470+ if ( ontCls == null || ontCls .getURI () == null ) {
471471 return null ;
472472 }
473473 return new OntologyTermImpl ( ontCls );
You can’t perform that action at this time.
0 commit comments