Skip to content

Commit c6cbeb5

Browse files
committed
Correct typo
1 parent d1b5450 commit c6cbeb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jabref/gui/util/FilteredListProxy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public static void refilterListReflection(FilteredList<BibEntryTableViewModel> f
8787
/**
8888
* We directly invoke the specified method on the given filteredList
8989
*/
90-
private static Object invoke(FilteredList<?> filtertedList, Class<?> clazz, String methodName, Object... params) throws ReflectiveOperationException {
90+
private static Object invoke(FilteredList<?> filteredList, Class<?> clazz, String methodName, Object... params) throws ReflectiveOperationException {
9191
// Determine the parameter types for the method lookup
9292
Class<?>[] paramTypes = new Class[params.length];
9393
for (int i = 0; i < params.length; i++) {
@@ -99,7 +99,7 @@ private static Object invoke(FilteredList<?> filtertedList, Class<?> clazz, Stri
9999
}
100100
Method method = clazz.getDeclaredMethod(methodName, paramTypes);
101101
method.setAccessible(true);
102-
return method.invoke(filtertedList, params);
102+
return method.invoke(filteredList, params);
103103
}
104104

105105
/**

0 commit comments

Comments
 (0)