Skip to content

Commit

Permalink
DATAJPA-1079 - Adapt to API changes in RepositoryConfigurationExtensi…
Browse files Browse the repository at this point in the history
…onSupport.
  • Loading branch information
odrotbohm committed Mar 24, 2017
1 parent 3014479 commit 85b930d
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,12 @@ public String getModuleName() {
return "JPA";
}

/*
/*
* (non-Javadoc)
* @see org.springframework.data.repository.config14.RepositoryConfigurationExtension#getRepositoryInterface()
* @see org.springframework.data.repository.config.RepositoryConfigurationExtension#getRepositoryFactoryBeanClassName()
*/
public String getRepositoryFactoryClassName() {
@Override
public String getRepositoryFactoryBeanClassName() {
return JpaRepositoryFactoryBean.class.getName();
}

Expand Down

0 comments on commit 85b930d

Please sign in to comment.