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/BooleanConfigAttribute.java |   19 -------------------
 1 files changed, 0 insertions(+), 19 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/config/BooleanConfigAttribute.java b/opendj-sdk/opends/src/server/org/opends/server/config/BooleanConfigAttribute.java
index c1adf8e..4abbb5d 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/config/BooleanConfigAttribute.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/config/BooleanConfigAttribute.java
@@ -155,7 +155,6 @@
    */
   public String getDataType()
   {
-
     return "Boolean";
   }
 
@@ -168,7 +167,6 @@
    */
   public AttributeSyntax getSyntax()
   {
-
     return DirectoryServer.getDefaultBooleanSyntax();
   }
 
@@ -181,7 +179,6 @@
    */
   public boolean activeValue()
   {
-
     return activeValue;
   }
 
@@ -195,7 +192,6 @@
    */
   public boolean pendingValue()
   {
-
     if (hasPendingValues())
     {
       return pendingValue;
@@ -215,7 +211,6 @@
    */
   public void setValue(boolean booleanValue)
   {
-
     if (requiresAdminAction())
     {
       pendingValue = booleanValue;
@@ -239,7 +234,6 @@
    */
   private static LinkedHashSet<AttributeValue> getValueSet(boolean booleanValue)
   {
-
     LinkedHashSet<AttributeValue> valueSet =
          new LinkedHashSet<AttributeValue>(1);
     if (booleanValue)
@@ -265,7 +259,6 @@
    */
   public void applyPendingValues()
   {
-
     if (! hasPendingValues())
     {
       return;
@@ -292,7 +285,6 @@
   public boolean valueIsAcceptable(AttributeValue value,
                                    StringBuilder rejectReason)
   {
-
     String stringValue = value.getStringValue();
     if (stringValue.equalsIgnoreCase(CONFIG_VALUE_TRUE) ||
         stringValue.equalsIgnoreCase(CONFIG_VALUE_FALSE))
@@ -331,7 +323,6 @@
                               boolean allowFailures)
          throws ConfigException
   {
-
     if ((valueStrings == null) || valueStrings.isEmpty())
     {
       int    msgID   = MSGID_CONFIG_ATTR_IS_REQUIRED;
@@ -381,7 +372,6 @@
    */
   public List<String> activeValuesToStrings()
   {
-
     ArrayList<String> valueStrings = new ArrayList<String>(1);
     valueStrings.add(String.valueOf(activeValue));
 
@@ -403,7 +393,6 @@
    */
   public List<String> pendingValuesToStrings()
   {
-
     if (hasPendingValues())
     {
       ArrayList<String> valueStrings = new ArrayList<String>(1);
@@ -443,8 +432,6 @@
   public ConfigAttribute getConfigAttribute(List<Attribute> attributeList)
          throws ConfigException
   {
-
-
     boolean activeValue     = false;
     boolean pendingValue    = false;
     boolean activeValueSet  = false;
@@ -608,7 +595,6 @@
    */
   public javax.management.Attribute toJMXAttribute()
   {
-
     return new javax.management.Attribute(getName(), activeValue);
   }
 
@@ -640,7 +626,6 @@
    */
   public void toJMXAttribute(AttributeList attributeList)
   {
-
     attributeList.add(new javax.management.Attribute(getName(), activeValue));
 
     if (requiresAdminAction() && (pendingValue != activeValue))
@@ -666,7 +651,6 @@
    */
   public void toJMXAttributeInfo(List<MBeanAttributeInfo> attributeInfoList)
   {
-
     attributeInfoList.add(new MBeanAttributeInfo(getName(),
                                                  Boolean.class.getName(),
                                                  getDescription(), true, true,
@@ -693,7 +677,6 @@
    */
   public MBeanParameterInfo toJMXParameterInfo()
   {
-
     return new MBeanParameterInfo(getName(), Boolean.TYPE.getName(),
                                   getDescription());
   }
@@ -714,7 +697,6 @@
   public void setValue(javax.management.Attribute jmxAttribute)
          throws ConfigException
   {
-
     Object value = jmxAttribute.getValue();
     if (value instanceof Boolean)
     {
@@ -758,7 +740,6 @@
    */
   public ConfigAttribute duplicate()
   {
-
     return new BooleanConfigAttribute(getName(), getDescription(),
                                       requiresAdminAction(), activeValue,
                                       pendingValue);

--
Gitblit v1.10.0