public int getContentLength()

in src/main/java/org/apache/sling/bundleresource/impl/BundleResourceURLConnection.java [76:84]


    public int getContentLength() {
        try {
            connect();
        } catch (IOException ex) {
            return -1;
        }

        return delegatee.getContentLength();
    }