mirror of
https://github.com/github/codeql.git
synced 2026-03-31 20:58:16 +02: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
|
|
}
|
|
} |