Allon Mureinik has uploaded a new change for review. Change subject: core: DisconnectStorageServerConnection imports ......................................................................
core: DisconnectStorageServerConnection imports Replace FQCNs with imports for improved readability. Change-Id: Ib26675d6a3ef4b588a90f453792180f1770b67a4 Signed-off-by: Allon Mureinik <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/DisconnectStorageServerConnectionCommand.java 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/52/17052/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/DisconnectStorageServerConnectionCommand.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/DisconnectStorageServerConnectionCommand.java index f98ceb8..a259533 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/DisconnectStorageServerConnectionCommand.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/DisconnectStorageServerConnectionCommand.java @@ -1,5 +1,7 @@ package org.ovirt.engine.core.bll.storage; +import java.util.ArrayList; +import java.util.Arrays; import org.ovirt.engine.core.bll.Backend; import org.ovirt.engine.core.bll.InternalCommandAttribute; import org.ovirt.engine.core.common.action.StorageServerConnectionParametersBase; @@ -26,7 +28,7 @@ VDSCommandType.DisconnectStorageServer, new StorageServerConnectionManagementVDSParameters(getParameters().getVdsId(), getParameters() .getStoragePoolId(), getParameters().getStorageServerConnection().getstorage_type(), - new java.util.ArrayList<StorageServerConnections>(java.util.Arrays + new ArrayList<>(Arrays .asList(new StorageServerConnections[] { getConnection() })))).getSucceeded() ; } -- To view, visit http://gerrit.ovirt.org/17052 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ib26675d6a3ef4b588a90f453792180f1770b67a4 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Allon Mureinik <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
