public synchronized void connect()

in src/main/java/org/apache/sling/bundleresource/impl/BundleResourceURLConnection.java [55:67]


    public synchronized void connect() throws IOException {
        if (!connected) {
            URL url = bundle.getEntry(bundlePath);
            if (url == null) {
                throw new IOException("Cannot find entry " + bundlePath
                    + " in bundle " + bundle + " for URL " + url);
            }

            delegatee = url.openConnection();

            connected = true;
        }
    }