Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use general service loading instead of Image I/O-specific #18

Merged
1 commit merged into from
May 6, 2016

Commits on May 6, 2016

  1. Use general service loading instead of Image I/O-specific

    In Java 9, `javax.imageio.spi.ServiceRegistry` checks if the requested service is an implementation of the Image I/O service provider interface. This module used the Image I/O service registry for loading external utility services like logging and caching. This is not an intended use and is now prohibited by the Java 9 runtime. `javax.imageio.spi.ServiceRegistry` uses 'java.util.ServiceLoader' internally.
    
    The lookups done by `javax.imageio.spi.ServiceRegistry` are replaced by that of 'java.util.ServiceLoader'. This fixes issue #10.
    theMattCode committed May 6, 2016
    Configuration menu
    Copy the full SHA
    cf8b0a2 View commit details
    Browse the repository at this point in the history