Files
codeql/java/ql/test/query-tests/Telemetry/SupportedExternalSinks/SupportedExternalSinks.java
2021-08-16 21:55:00 +02:00

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();
}
}