private URL toUrl()

in src/main/java/org/apache/maven/shared/scriptinterpreter/BeanShellScriptInterpreter.java [97:103]


    private URL toUrl(String path) {
        try {
            return new File(path).toURI().toURL();
        } catch (MalformedURLException e) {
            throw new UncheckedIOException(e);
        }
    }