Skip to content

Commit c94e92f

Browse files
committed
Fix: Remove incorrect @OverRide annotation causing CI failure
The @OverRide annotation on getQueryLookupStrategy() was incorrect as this method doesn't override a supertype method in the current version of Spring Data Commons. This was causing compilation errors in CI. Fixes compilation error: [ERROR] method does not override or implement a method from a supertype
1 parent cae241c commit c94e92f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/org/springframework/data/falkordb/repository/support/FalkorDBRepositoryFactory.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ protected Class<?> getRepositoryBaseClass(RepositoryMetadata metadata) {
8888
return SimpleFalkorDBRepository.class;
8989
}
9090

91-
@Override
9291
protected Optional<QueryLookupStrategy> getQueryLookupStrategy(@Nullable QueryLookupStrategy.Key key) {
9392

9493
return Optional.of(new FalkorDBQueryLookupStrategy());

0 commit comments

Comments
 (0)