Allon Mureinik has uploaded a new change for review. Change subject: core: VdcActionUtils: Replace FQCNs with imports ......................................................................
core: VdcActionUtils: Replace FQCNs with imports Imported relevant classes to make the code more readable. Change-Id: Iaf3c9a0137dbefff18fc13b05ffdb6b1acd3f83b Signed-off-by: Allon Mureinik <amure...@redhat.com> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/VdcActionUtils.java 1 file changed, 4 insertions(+), 4 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/49/18849/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/VdcActionUtils.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/VdcActionUtils.java index 6bb6f2d..0ee81f5 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/VdcActionUtils.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/VdcActionUtils.java @@ -4,6 +4,7 @@ import java.util.HashMap; import java.util.HashSet; import java.util.List; +import java.util.Map; import org.ovirt.engine.core.common.action.VdcActionType; import org.ovirt.engine.core.common.businessentities.StorageDomain; @@ -18,14 +19,13 @@ public final class VdcActionUtils { - private static final java.util.Map<java.lang.Class<?>, java.util.Map<Enum<?>, java.util.HashSet<VdcActionType>>> _matrix = - new java.util.HashMap<java.lang.Class<?>, java.util.Map<Enum<?>, java.util.HashSet<VdcActionType>>>(); + private static final Map<Class<?>, Map<Enum<?>, HashSet<VdcActionType>>> _matrix = + new HashMap<Class<?>, Map<Enum<?>, HashSet<VdcActionType>>>(); static { // this matrix contains the actions that CANNOT run per status // ("black list") - java.util.HashMap<Enum<?>, java.util.HashSet<VdcActionType>> vdsMatrix = - new java.util.HashMap<Enum<?>, java.util.HashSet<VdcActionType>>(); + HashMap<Enum<?>, HashSet<VdcActionType>> vdsMatrix = new HashMap<Enum<?>, HashSet<VdcActionType>>(); vdsMatrix.put( VDSStatus.Maintenance, new HashSet<VdcActionType>(Arrays -- To view, visit http://gerrit.ovirt.org/18849 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Iaf3c9a0137dbefff18fc13b05ffdb6b1acd3f83b Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Allon Mureinik <amure...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches