niagara-ax/modules/cfr_output/com/tridium/util/jar/JarURLStreamHandler.java
2026-03-17 13:31:18 -07:00

25 lines
532 B
Java

/*
* Decompiled with CFR 0.152.
*/
package com.tridium.util.jar;
import com.tridium.util.jar.JarEntry;
import com.tridium.util.jar.JarURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
public class JarURLStreamHandler
extends URLStreamHandler {
private JarEntry entry;
public URLConnection openConnection(URL uRL) {
return new JarURLConnection(uRL, this.entry);
}
public JarURLStreamHandler(JarEntry jarEntry) {
this.entry = jarEntry;
}
}