Moti Asayag has uploaded a new change for review. Change subject: engine: Maintain camelCase for Callback in CommandBase ......................................................................
engine: Maintain camelCase for Callback in CommandBase Change-Id: Ifda88ff9040361c5fe6f04b9d5577aca9fa8c822 Signed-off-by: Moti Asayag <masa...@redhat.com> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CommandBase.java 1 file changed, 6 insertions(+), 7 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/93/38693/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CommandBase.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CommandBase.java index 2d166cf..a367d0c 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CommandBase.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/CommandBase.java @@ -2151,17 +2151,16 @@ persistCommand(parentCommand, getContext(), false); } - public void persistCommand(VdcActionType parentCommand, boolean enableCallBack) { - persistCommand(parentCommand, getContext(), enableCallBack); + public void persistCommand(VdcActionType parentCommand, boolean enableCallback) { + persistCommand(parentCommand, getContext(), enableCallback); } - public void persistCommand(VdcActionType parentCommand, CommandContext cmdContext, boolean enableCallBack) { + public void persistCommand(VdcActionType parentCommand, CommandContext cmdContext, boolean enableCallback) { Transaction transaction = TransactionSupport.suspend(); try { - CommandCoordinatorUtil.persistCommand( - buildCommandEntity(getParentParameters(parentCommand).getCommandId(), - enableCallBack), - cmdContext); + CommandEntity commandEntity = + buildCommandEntity(getParentParameters(parentCommand).getCommandId(), enableCallback); + CommandCoordinatorUtil.persistCommand(commandEntity, cmdContext); } finally { if (transaction != null) { TransactionSupport.resume(transaction); -- To view, visit https://gerrit.ovirt.org/38693 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ifda88ff9040361c5fe6f04b9d5577aca9fa8c822 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Moti Asayag <masa...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches