All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sun.net.www.protocol.asset.Handler.groovy Maven / Gradle / Ivy

package sun.net.www.protocol.asset;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
import groovy.transform.CompileStatic

@CompileStatic
public class Handler extends URLStreamHandler
{
	@Override
	protected URLConnection openConnection(URL u)
	throws IOException
	{
		return new AssetConnection(u);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy