blob: 21bcbb7e89d0a71c4474e56877bbb8ed82d47117 [file] [log] [blame]
package org.apache.sling.uca.impl;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
public class Main {
public static void main(String[] args) throws MalformedURLException, IOException {
new URL("http://sling.apache.org").openConnection();
}
}