private static URL toURL()

in src/main/java/org/apache/cassandra/distributed/shared/Versions.java [165:175]


    private static URL toURL(File file)
    {
        try
        {
            return file.toURI().toURL();
        }
        catch (MalformedURLException e)
        {
            throw new IllegalArgumentException(e);
        }
    }