Skip to content

Commit 3b764f2

Browse files
authored
Remove not meaningful comment [ci skip]
1 parent 40d3376 commit 3b764f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/cryptomator/integrations/common/IntegrationsLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public static <T> Stream<T> loadAll(ServiceLoader<T> serviceLoader, @NotNull Cla
7070
.sorted(Comparator.comparingInt(IntegrationsLoader::getPriority).reversed())
7171
.flatMap(IntegrationsLoader::instantiateServiceProvider)
7272
.filter(IntegrationsLoader::passesInstanceAvailabilityCheck)
73-
.peek(impl -> logServiceIsAvailable(clazz, impl.getClass())); //TODO
73+
.peek(impl -> logServiceIsAvailable(clazz, impl.getClass()));
7474
}
7575

7676
private static void logFoundServiceProvider(Class<?> apiType, Class<?> implType) {

0 commit comments

Comments
 (0)