Removed @Override annotations as they cannot be used at interfaces with Java 5.

This commit is contained in:
Oliver Gierke
2011-03-12 08:36:42 +01:00
parent 01a800b2cc
commit 2947bfeaa6

View File

@@ -33,7 +33,6 @@ public interface MongoRepository<T, ID extends Serializable> extends PagingAndSo
*
* @see org.springframework.data.repository.Repository#findAll()
*/
@Override
List<T> findAll();
/*
@@ -41,6 +40,5 @@ public interface MongoRepository<T, ID extends Serializable> extends PagingAndSo
*
* @see org.springframework.data.repository.PagingAndSortingRepository#findAll(org.springframework.data.domain.Sort)
*/
@Override
List<T> findAll(Sort sort);
}