Closed newnius closed 5 years ago
Replace
callables.add(new Callable<Void>() { @Override public Void call() throws Exception { if (factory.isEnabled()) { factory.create(registry, context); } return null; } });
with
callables.add(() -> { if (factory.isEnabled()) { factory.create(registry, context); } return null; });
Replace
with