Skip to content

Commit 2e62a16

Browse files
committed
DATACMNS-631 - Made RepositoryFactorySupport.getRepositoryMetadata(…) protected.
Some JavaDoc polishes.
1 parent a98d5c7 commit 2e62a16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2008-2014 the original author or authors.
2+
* Copyright 2008-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -192,10 +192,10 @@ public <T> T getRepository(Class<T> repositoryInterface, Object customImplementa
192192
/**
193193
* Returns the {@link RepositoryMetadata} for the given repository interface.
194194
*
195-
* @param repositoryInterface
195+
* @param repositoryInterface will never be {@literal null}.
196196
* @return
197197
*/
198-
RepositoryMetadata getRepositoryMetadata(Class<?> repositoryInterface) {
198+
protected RepositoryMetadata getRepositoryMetadata(Class<?> repositoryInterface) {
199199
return AbstractRepositoryMetadata.getMetadata(repositoryInterface);
200200
}
201201

0 commit comments

Comments
 (0)