Alissa Bonas has uploaded a new change for review. Change subject: ui: rename members to start with lowercase ......................................................................
ui: rename members to start with lowercase Change-Id: I361a44bf1f418a78ee7679bae6083dcfae70830e Signed-off-by: Alissa Bonas <abo...@redhat.com> --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/AsyncIteratorCallback.java M frontend/webadmin/modules/uicompat/src/main/java/org/ovirt/engine/ui/uicompat/ReversibleFlow.java 2 files changed, 6 insertions(+), 6 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/59/22759/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/AsyncIteratorCallback.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/AsyncIteratorCallback.java index f619152..3125a88 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/AsyncIteratorCallback.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/AsyncIteratorCallback.java @@ -7,7 +7,7 @@ public class AsyncIteratorCallback { - public static EventDefinition NotifyEventDefinition; + public static EventDefinition notifyEventDefinition; private Event notifyEvent; @@ -36,12 +36,12 @@ } static { - NotifyEventDefinition = new EventDefinition("Notify", AsyncIteratorCallback.class); //$NON-NLS-1$ + notifyEventDefinition = new EventDefinition("Notify", AsyncIteratorCallback.class); //$NON-NLS-1$ } public AsyncIteratorCallback(String frontendContext) { - setNotifyEvent(new Event(NotifyEventDefinition)); + setNotifyEvent(new Event(notifyEventDefinition)); // Set a stub method calling notify event on AsyncQuery complete. setAsyncQuery(new AsyncQuery(this, diff --git a/frontend/webadmin/modules/uicompat/src/main/java/org/ovirt/engine/ui/uicompat/ReversibleFlow.java b/frontend/webadmin/modules/uicompat/src/main/java/org/ovirt/engine/ui/uicompat/ReversibleFlow.java index 58da1ef..0be273e 100644 --- a/frontend/webadmin/modules/uicompat/src/main/java/org/ovirt/engine/ui/uicompat/ReversibleFlow.java +++ b/frontend/webadmin/modules/uicompat/src/main/java/org/ovirt/engine/ui/uicompat/ReversibleFlow.java @@ -12,7 +12,7 @@ int rollbackIndex; Object context; - public static EventDefinition CompleteEventDefinition; + public static EventDefinition completeEventDefinition; private Event completeEvent; public Event getCompleteEvent() { @@ -21,13 +21,13 @@ static { - CompleteEventDefinition = new EventDefinition("Complete", ReversibleFlow.class); //$NON-NLS-1$ + completeEventDefinition = new EventDefinition("Complete", ReversibleFlow.class); //$NON-NLS-1$ } public ReversibleFlow() { - completeEvent = new Event(CompleteEventDefinition); + completeEvent = new Event(completeEventDefinition); notifications = new ArrayList<IEnlistmentNotification>(); } -- To view, visit http://gerrit.ovirt.org/22759 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I361a44bf1f418a78ee7679bae6083dcfae70830e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alissa Bonas <abo...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches