mirror of
https://github.com/clearlinux/official-images.git
synced 2026-08-19 19:15:50 +00:00
15 lines
275 B
Java
15 lines
275 B
Java
import java.net.URL;
|
|
|
|
public class container {
|
|
public static void main(String[] args) {
|
|
try {
|
|
new URL("https://google.com").openStream(); // force a CA certificate lookup
|
|
System.exit(0);
|
|
}
|
|
catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
System.exit(1);
|
|
}
|
|
}
|