mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
8 lines
204 B
Java
8 lines
204 B
Java
import java.net.URL;
|
|
import java.net.URLConnection;
|
|
|
|
class Test{
|
|
URLConnection test2() throws Exception {
|
|
return new URL("https://example.com").openConnection(); // $hasNoTrustedResult
|
|
}
|
|
} |