mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
10 lines
263 B
Java
10 lines
263 B
Java
import java.io.InputStream;
|
|
import java.net.URL;
|
|
|
|
class SupportedExternalSources {
|
|
public static void main(String[] args) throws Exception {
|
|
URL github = new URL("https://www.github.com/");
|
|
InputStream stream = github.openConnection().getInputStream();
|
|
}
|
|
}
|