blob: 0a4d2ae3dfb7561097d9eb53d01f39726e09d4b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.juick.components.url;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
/**
* Created by vitalyster on 11.11.2016.
*/
public class JuickURLStreamHandler extends URLStreamHandler {
@Override
protected URLConnection openConnection(URL u) throws IOException {
return new JuickURLConnection(u);
}
}
|