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

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

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

    /**
     * Gets 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:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    protected void doCloseCommunicationLink() {
        if (httpClient instanceof Closeable) {
            Uncheck.run(() -> ((Closeable) httpClient).close(), () -> "Error closing HttpClient");
        }
    }

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

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

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



