Skip to content

Commit

Permalink
Merge pull request #5 from wherget/feature/overridable-type-resolution
Browse files Browse the repository at this point in the history
Feature/overridable type resolution
  • Loading branch information
cyberborean committed May 23, 2016
2 parents f6e034f + 61d0e94 commit 561a97a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ target
.settings
.classpath
.project
.idea
*.iml
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@
<timezone>+5</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Wolfgang Herget</name>
<id>wherget</id>
<email>wolfgang {dot} herget {at} dfki {dot} de</email>
<timezone>+1</timezone>
<organization>DFKI GmbH</organization>
<organizationUrl>http://www.dfki.de</organizationUrl>
</contributor>
</contributors>

<scm>
<connection>scm:git:git://github.com/cyberborean/rdfbeans.git</connection>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cyberborean/rdfbeans/RDFBeanManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ private Class<?> getBindingClass(Resource r) throws RDFBeanException, Repository
return cls;
}

private Class<?> getBindingClassForType(URI rdfType) throws RDFBeanException, RepositoryException{
protected Class<?> getBindingClassForType(URI rdfType) throws RDFBeanException, RepositoryException{
Class cls = classCache.get(rdfType);
if (cls != null) {
return cls;
Expand Down

0 comments on commit 561a97a

Please sign in to comment.