commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http4/Http4FileSystem.java [88:121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    protected void doCloseCommunicationLink() {
        if (httpClient instanceof Closeable) {
            // TODO "Error closing HttpClient" Commons IO
            // Uncheck.run(() -> ((Closeable) httpClient).close(), () -> "Error closing HttpClient");
            Uncheck.run(() -> ((Closeable) httpClient).close());
        }
    }

    /**
     * Return the internal {@link HttpClient} instance.
     *
     * @return the internal {@link HttpClient} instance
     */
    protected HttpClient getHttpClient() {
        return httpClient;
    }

    /**
     * Return the internal {@link HttpClientContext} instance.
     *
     * @return the internal {@link HttpClientContext} instance
     */
    protected HttpClientContext getHttpClientContext() {
        return httpClientContext;
    }

    /**
     * Return the internal base {@code URI} instance.
     *
     * @return the internal base {@code URI} instance
     */
    protected URI getInternalBaseURI() {
        return internalBaseURI;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http5/Http5FileSystem.java [88:121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    protected void doCloseCommunicationLink() {
        if (httpClient instanceof Closeable) {
            // TODO "Error closing HttpClient" Commons IO
            // Uncheck.run(() -> ((Closeable) httpClient).close(), () -> "Error closing HttpClient");
            Uncheck.run(() -> ((Closeable) httpClient).close());
        }
    }

    /**
     * Return the internal {@link HttpClient} instance.
     *
     * @return the internal {@link HttpClient} instance
     */
    protected HttpClient getHttpClient() {
        return httpClient;
    }

    /**
     * Return the internal {@link HttpClientContext} instance.
     *
     * @return the internal {@link HttpClientContext} instance
     */
    protected HttpClientContext getHttpClientContext() {
        return httpClientContext;
    }

    /**
     * Return the internal base {@code URI} instance.
     *
     * @return the internal base {@code URI} instance
     */
    protected URI getInternalBaseURI() {
        return internalBaseURI;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



