Alissa Bonas has uploaded a new change for review. Change subject: core: remove unused parameter in ForemanHostProviderProxy ......................................................................
core: remove unused parameter in ForemanHostProviderProxy Change-Id: Icb10c9dda7381811f64ad6ddb77a30ecf44d727d Signed-off-by: Alissa Bonas <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/host/provider/foreman/ForemanHostProviderProxy.java 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/59/26259/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/host/provider/foreman/ForemanHostProviderProxy.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/host/provider/foreman/ForemanHostProviderProxy.java index fbf1eaa..092e162 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/host/provider/foreman/ForemanHostProviderProxy.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/host/provider/foreman/ForemanHostProviderProxy.java @@ -48,7 +48,7 @@ public ForemanHostProviderProxy(Provider hostProvider) { super(hostProvider); this.hostProvider = hostProvider; - initHttpClient(hostProvider.getUrl()); + initHttpClient(); } @Override @@ -123,7 +123,7 @@ } } - private void initHttpClient(String hostUrlString) { + private void initHttpClient() { try { URL hostUrl = getUrl(); if (isSecured()) { -- To view, visit http://gerrit.ovirt.org/26259 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Icb10c9dda7381811f64ad6ddb77a30ecf44d727d Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alissa Bonas <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
