Skip to content

Instantly share code, notes, and snippets.

@scheakur
Created January 29, 2014 13:41
Show Gist options
  • Save scheakur/8688199 to your computer and use it in GitHub Desktop.
Save scheakur/8688199 to your computer and use it in GitHub Desktop.
import java.net.URL;
public class Test1 {
public static void main(String... args) throws Exception {
URL url = new URL("http://google.com");
System.out.println(url.equals(new URL("http://google.com")));
Thread.sleep(30000);
System.out.println(url.equals(new URL("http://google.com")));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment