From 673d22f61dfb2f574c6445f3b262479c3b40c976 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 23 Apr 2007 21:26:14 +0000
Subject: [PATCH] Define the serialVersionUID variable for QuickSetup classes which indirectly implement the Serializable interface.
---
opends/src/quicksetup/org/opends/quicksetup/upgrader/ui/ChooseVersionPanel.java | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/upgrader/ui/ChooseVersionPanel.java b/opends/src/quicksetup/org/opends/quicksetup/upgrader/ui/ChooseVersionPanel.java
index 40921cf..da6b33c 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/upgrader/ui/ChooseVersionPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/upgrader/ui/ChooseVersionPanel.java
@@ -279,6 +279,14 @@
implements ListCellRenderer {
/**
+ * The serial version identifier required to satisfy the compiler because this
+ * class extends a class that implements the {@code java.io.Serializable}
+ * interface. This value was generated using the {@code serialver}
+ * command-line utility included with the Java SDK.
+ */
+ private static final long serialVersionUID = -7075573664472711599L;
+
+ /**
* Creates a default instance.
*/
public BuildListErrorComboBoxRenderer() {
@@ -312,6 +320,14 @@
private Throwable reason = null;
/**
+ * The serial version identifier required to satisfy the compiler because this
+ * class extends a class that implements the {@code java.io.Serializable}
+ * interface. This value was generated using the {@code serialver}
+ * command-line utility included with the Java SDK.
+ */
+ private static final long serialVersionUID = -5606673656068527646L;
+
+ /**
* Creates an instance.
* @param rbm RemoteBuildManager that is having trouble.
*/
--
Gitblit v1.10.0