mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
12 lines
266 B
Java
12 lines
266 B
Java
import java.io.File;
|
|
import java.io.FileWriter;
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
|
|
class SupportedExternalSinks {
|
|
public static void main(String[] args) throws Exception {
|
|
new FileWriter(new File("foo"));
|
|
new URL("http://foo").openStream();
|
|
}
|
|
}
|