Frank Kobzik has uploaded a new change for review. Change subject: frontend: serialVersionUID for console priority comparator ......................................................................
frontend: serialVersionUID for console priority comparator follow-up patch Change-Id: Ic455f1ea88e8919af05789b542e9c13bff6991cd Bug-Url: https://bugzilla.redhat.com/1086244 Signed-off-by: Frantisek Kobzik <[email protected]> --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/ConsoleProtocol.java 1 file changed, 4 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/08/27608/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/ConsoleProtocol.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/ConsoleProtocol.java index e4e3dd6..591c51f 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/ConsoleProtocol.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/ConsoleProtocol.java @@ -45,6 +45,9 @@ } static class PriorityComparator implements Comparator<ConsoleProtocol>, Serializable { + + private static final long serialVersionUID = -4511422219352593185L; + @Override public int compare(ConsoleProtocol fst, ConsoleProtocol snd) { if (fst == null && snd == null) { @@ -58,6 +61,7 @@ } return fst.priority - snd.priority; } + } public static List<ConsoleProtocol> getProtocolsByPriority() { -- To view, visit http://gerrit.ovirt.org/27608 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ic455f1ea88e8919af05789b542e9c13bff6991cd Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Frank Kobzik <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
