From a23343e9e4e0b555b1bcfa99a7455e0e28117a3d Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 08 Jul 2015 07:00:00 +0000
Subject: [PATCH] AutoRefactor'ed remove useless semi-colons
---
opendj-server-legacy/src/main/java/org/opends/server/backends/task/Task.java | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/backends/task/Task.java b/opendj-server-legacy/src/main/java/org/opends/server/backends/task/Task.java
index c6717fa..ffe5508 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/backends/task/Task.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/backends/task/Task.java
@@ -160,7 +160,7 @@
// NOTE: this method is invoked via reflection. If you rename
// it be sure to modify the calls.
return null;
- };
+ }
/**
* Given an attribute type name returns and locale sensitive
@@ -168,11 +168,10 @@
*
* @param name of an attribute type associated with the object
* class that represents this entry in the directory
- * @return LocalizableMessage diaplay name
+ * @return LocalizableMessage display name
*/
public LocalizableMessage getAttributeDisplayName(String name) {
- // Subclasses that are schedulable from the task interface
- // should override this
+ // Subclasses that are schedulable from the task interface should override this
// NOTE: this method is invoked via reflection. If you rename
// it be sure to modify the calls.
--
Gitblit v1.10.0