From 2e62a16f69769170d92223289e7e3d3acc82e2f1 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Thu, 15 Jan 2015 15:45:45 +0100 Subject: [PATCH] =?UTF-8?q?DATACMNS-631=20-=20Made=20RepositoryFactorySupp?= =?UTF-8?q?ort.getRepositoryMetadata(=E2=80=A6)=20protected.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some JavaDoc polishes. --- .../repository/core/support/RepositoryFactorySupport.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java index 42dce390c..358af4953 100644 --- a/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java +++ b/src/main/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.java @@ -1,5 +1,5 @@ /* - * Copyright 2008-2014 the original author or authors. + * Copyright 2008-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -192,10 +192,10 @@ public abstract class RepositoryFactorySupport implements BeanClassLoaderAware { /** * Returns the {@link RepositoryMetadata} for the given repository interface. * - * @param repositoryInterface + * @param repositoryInterface will never be {@literal null}. * @return */ - RepositoryMetadata getRepositoryMetadata(Class repositoryInterface) { + protected RepositoryMetadata getRepositoryMetadata(Class repositoryInterface) { return AbstractRepositoryMetadata.getMetadata(repositoryInterface); }