◐ Shell
clean mode source ↗

Fix issue #406 without a location call handler supportsOpen(string) by karlduderstadt · Pull Request #418 · scijava/scijava-common

Expand Up @@ -50,7 +50,10 @@ public interface IOService extends HandlerService<Location, IOPlugin<?>>, * location. */ default IOPlugin<?> getOpener(final String source) { return getOpener(new FileLocation(source)); for (final IOPlugin<?> handler : getInstances()) { if (handler.supportsOpen(source)) return handler; } return null; }
/** Expand Down