Skip to content

Commit 0a51dba

Browse files
authored
Correcting a typo in ElasticsearchAotPredicates class.
Original Pull Request #2881 Closes #2880
1 parent c96423d commit 0a51dba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/springframework/data/elasticsearch/aot/ElasticsearchAotPredicates.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
*/
2626
public class ElasticsearchAotPredicates {
2727

28-
public static final Predicate<ReactiveWrappers.ReactiveLibrary> IS_REACTIVE_LIBARARY_AVAILABLE = (
28+
public static final Predicate<ReactiveWrappers.ReactiveLibrary> IS_REACTIVE_LIBRARY_AVAILABLE = (
2929
lib) -> ReactiveWrappers.isAvailable(lib);
3030

3131
public static boolean isReactorPresent() {
32-
return IS_REACTIVE_LIBARARY_AVAILABLE.test(ReactiveWrappers.ReactiveLibrary.PROJECT_REACTOR);
32+
return IS_REACTIVE_LIBRARY_AVAILABLE.test(ReactiveWrappers.ReactiveLibrary.PROJECT_REACTOR);
3333
}
3434

3535
}

0 commit comments

Comments
 (0)