From f2160f4bd1c8ac67e5a86a6710d431e8932877f9 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 28 May 2010 11:47:51 +0000
Subject: [PATCH] Synchronize SDK on java.net with internal repository.

---
 sdk/src/org/opends/sdk/ErrorResultIOException.java |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/sdk/src/org/opends/sdk/ErrorResultIOException.java b/sdk/src/org/opends/sdk/ErrorResultIOException.java
index 109ed21..7366bbd 100644
--- a/sdk/src/org/opends/sdk/ErrorResultIOException.java
+++ b/sdk/src/org/opends/sdk/ErrorResultIOException.java
@@ -36,8 +36,8 @@
 
 
 /**
- * An {@code ErrorResultIOException} adapts an {@code
- * ErrorResultException} to an {@code IOException}.
+ * An {@code ErrorResultIOException} adapts an {@code ErrorResultException} to
+ * an {@code IOException}.
  */
 @SuppressWarnings("serial")
 public final class ErrorResultIOException extends IOException
@@ -50,12 +50,12 @@
    * Creates a new error result IO exception with the provided cause.
    *
    * @param cause
-   *          The cause which may be later retrieved by the
-   *          {@link #getCause} method.
+   *          The cause which may be later retrieved by the {@link #getCause}
+   *          method.
    * @throws NullPointerException
    *           If {@code cause} was {@code null}.
    */
-  public ErrorResultIOException(ErrorResultException cause)
+  public ErrorResultIOException(final ErrorResultException cause)
       throws NullPointerException
   {
     super(Validator.ensureNotNull(cause));
@@ -68,6 +68,7 @@
   /**
    * {@inheritDoc}
    */
+  @Override
   public ErrorResultException getCause()
   {
     return cause;

--
Gitblit v1.10.0