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/requests/DeleteRequestImpl.java |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/sdk/src/org/opends/sdk/requests/DeleteRequestImpl.java b/sdk/src/org/opends/sdk/requests/DeleteRequestImpl.java
index c1d3bec..339a570 100644
--- a/sdk/src/org/opends/sdk/requests/DeleteRequestImpl.java
+++ b/sdk/src/org/opends/sdk/requests/DeleteRequestImpl.java
@@ -40,8 +40,8 @@
 /**
  * Delete request implementation.
  */
-final class DeleteRequestImpl extends
-    AbstractRequestImpl<DeleteRequest> implements DeleteRequest
+final class DeleteRequestImpl extends AbstractRequestImpl<DeleteRequest>
+    implements DeleteRequest
 {
   private DN name;
 
@@ -49,13 +49,13 @@
 
   /**
    * Creates a new delete request using the provided distinguished name.
-   * 
+   *
    * @param name
    *          The distinguished name of the entry to be deleted.
    * @throws NullPointerException
    *           If {@code name} was {@code null}.
    */
-  DeleteRequestImpl(DN name) throws NullPointerException
+  DeleteRequestImpl(final DN name) throws NullPointerException
   {
     this.name = name;
   }
@@ -65,7 +65,7 @@
   /**
    * {@inheritDoc}
    */
-  public <R, P> R accept(ChangeRecordVisitor<R, P> v, P p)
+  public <R, P> R accept(final ChangeRecordVisitor<R, P> v, final P p)
   {
     return v.visitChangeRecord(p, this);
   }
@@ -85,7 +85,7 @@
   /**
    * {@inheritDoc}
    */
-  public DeleteRequest setName(DN dn)
+  public DeleteRequest setName(final DN dn)
       throws UnsupportedOperationException, NullPointerException
   {
     Validator.ensureNotNull(dn);
@@ -98,9 +98,9 @@
   /**
    * {@inheritDoc}
    */
-  public DeleteRequest setName(String dn)
-      throws LocalizedIllegalArgumentException,
-      UnsupportedOperationException, NullPointerException
+  public DeleteRequest setName(final String dn)
+      throws LocalizedIllegalArgumentException, UnsupportedOperationException,
+      NullPointerException
   {
     Validator.ensureNotNull(dn);
     this.name = DN.valueOf(dn);
@@ -126,6 +126,7 @@
 
 
 
+  @Override
   DeleteRequest getThis()
   {
     return this;

--
Gitblit v1.10.0