mirror of
https://github.com/github/codeql.git
synced 2026-02-10 12:11:07 +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
|
|
}
|
|
} |