From 838e873376cc4a1cc3588746f6bf8dec4c9355a9 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Tue, 19 Jan 2010 17:09:10 +0000
Subject: [PATCH] Fix a bunch of warnings mentioned by the IDE (most of them related to the non-use of generics).

---
 opends/src/quicksetup/org/opends/quicksetup/HistoricalRecord.java |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/HistoricalRecord.java b/opends/src/quicksetup/org/opends/quicksetup/HistoricalRecord.java
index b872457..b769896 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/HistoricalRecord.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/HistoricalRecord.java
@@ -22,7 +22,7 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2006-2008 Sun Microsystems, Inc.
+ *      Copyright 2006-2010 Sun Microsystems, Inc.
  */
 
 package org.opends.quicksetup;
@@ -281,6 +281,15 @@
   }
 
   /**
+   * Returns the error that was generated during creation.
+   * @return the error that was generated during creation.
+   */
+  public Exception getCreationError()
+  {
+    return creationError;
+  }
+
+  /**
    * {@inheritDoc}
    */
   public String toString() {

--
Gitblit v1.10.0