From 3e3246e42af6979556dec66ec10ad3d3e009217c Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 01 Mar 2007 05:18:42 +0000
Subject: [PATCH] Remove blank lines at the beginning of methods left after eliminating the debugEnter and debugConstructor calls.

---
 opendj-sdk/opends/src/server/org/opends/server/config/MultiChoiceConfigAttribute.java |   28 ----------------------------
 1 files changed, 0 insertions(+), 28 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/config/MultiChoiceConfigAttribute.java b/opendj-sdk/opends/src/server/org/opends/server/config/MultiChoiceConfigAttribute.java
index 23c0dab..7b52e44 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/config/MultiChoiceConfigAttribute.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/config/MultiChoiceConfigAttribute.java
@@ -276,7 +276,6 @@
    */
   public String getDataType()
   {
-
     return "MultiChoice";
   }
 
@@ -289,7 +288,6 @@
    */
   public AttributeSyntax getSyntax()
   {
-
     return DirectoryServer.getDefaultStringSyntax();
   }
 
@@ -307,7 +305,6 @@
   public String activeValue()
          throws ConfigException
   {
-
     if ((activeValues == null) || activeValues.isEmpty())
     {
       int    msgID   = MSGID_CONFIG_ATTR_NO_STRING_VALUE;
@@ -334,7 +331,6 @@
    */
   public List<String> activeValues()
   {
-
     return activeValues;
   }
 
@@ -354,7 +350,6 @@
   public String pendingValue()
          throws ConfigException
   {
-
     if (! hasPendingValues())
     {
       return activeValue();
@@ -388,7 +383,6 @@
    */
   public List<String> pendingValues()
   {
-
     if (! hasPendingValues())
     {
       return activeValues;
@@ -408,7 +402,6 @@
    */
   public Set<String> allowedValues()
   {
-
     return allowedValues;
   }
 
@@ -424,7 +417,6 @@
   public void setValue(String value)
          throws ConfigException
   {
-
     if ((value == null) || (value.length() == 0))
     {
       int    msgID   = MSGID_CONFIG_ATTR_EMPTY_STRING_VALUE;
@@ -467,8 +459,6 @@
   public void setValues(List<String> values)
          throws ConfigException
   {
-
-
     // First check if the set is empty and if that is allowed.
     if ((values == null) || (values.isEmpty()))
     {
@@ -565,7 +555,6 @@
    */
   private static LinkedHashSet<AttributeValue> getValueSet(String value)
   {
-
     LinkedHashSet<AttributeValue> valueSet =
          new LinkedHashSet<AttributeValue>(1);
 
@@ -586,7 +575,6 @@
    */
   private static LinkedHashSet<AttributeValue> getValueSet(List<String> values)
   {
-
     if (values == null)
     {
       return null;
@@ -613,7 +601,6 @@
    */
   public void applyPendingValues()
   {
-
     if (! hasPendingValues())
     {
       return;
@@ -640,8 +627,6 @@
   public boolean valueIsAcceptable(AttributeValue value,
                                    StringBuilder rejectReason)
   {
-
-
     // Make sure that the value is non-empty.
     String stringValue;
     if ((value == null) ||
@@ -691,7 +676,6 @@
                               boolean allowFailures)
          throws ConfigException
   {
-
     if ((valueStrings == null) || valueStrings.isEmpty())
     {
       if (isRequired())
@@ -787,7 +771,6 @@
    */
   public List<String> activeValuesToStrings()
   {
-
     return activeValues;
   }
 
@@ -806,7 +789,6 @@
    */
   public List<String> pendingValuesToStrings()
   {
-
     if (hasPendingValues())
     {
       return pendingValues;
@@ -843,8 +825,6 @@
   public ConfigAttribute getConfigAttribute(List<Attribute> attributeList)
          throws ConfigException
   {
-
-
     ArrayList<String> activeValues  = null;
     ArrayList<String> pendingValues = null;
 
@@ -1009,7 +989,6 @@
    */
   private javax.management.Attribute _toJMXAttribute(boolean pending)
   {
-
     List<String> requestedValues ;
     String name ;
     if (pending)
@@ -1066,7 +1045,6 @@
    */
   public javax.management.Attribute toJMXAttributePending()
   {
-
     return _toJMXAttribute(true) ;
   }
 
@@ -1084,7 +1062,6 @@
    */
   public void toJMXAttribute(AttributeList attributeList)
   {
-
     if (activeValues.size() > 0)
     {
       if (isMultiValued())
@@ -1150,8 +1127,6 @@
    */
   public void toJMXAttributeInfo(List<MBeanAttributeInfo> attributeInfoList)
   {
-
-
     if (isMultiValued())
     {
       attributeInfoList.add(new MBeanAttributeInfo(getName(),
@@ -1200,7 +1175,6 @@
    */
   public MBeanParameterInfo toJMXParameterInfo()
   {
-
     if (isMultiValued())
     {
       return new MBeanParameterInfo(getName(), JMX_TYPE_STRING_ARRAY,
@@ -1229,7 +1203,6 @@
   public void setValue(javax.management.Attribute jmxAttribute)
          throws ConfigException
   {
-
     Object value = jmxAttribute.getValue();
     if (value instanceof String)
     {
@@ -1300,7 +1273,6 @@
    */
   public ConfigAttribute duplicate()
   {
-
     return new MultiChoiceConfigAttribute(getName(), getDescription(),
                                           isRequired(), isMultiValued(),
                                           requiresAdminAction(), allowedValues,

--
Gitblit v1.10.0