mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

boli
01.27.2007 455897cc245b67d929f409a93cfa7106e835cc1f
opends/src/server/org/opends/server/api/AttributeSyntax.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 */
package org.opends.server.api;
@@ -33,7 +33,6 @@
import org.opends.server.types.ByteString;
import org.opends.server.types.InitializationException;
import static org.opends.server.loggers.Debug.*;
@@ -44,11 +43,6 @@
 */
public abstract class AttributeSyntax
{
  /**
   * The fully-qualified name of this class for debugging purposes.
   */
  private static final String CLASS_NAME =
       "org.opends.server.api.AttributeSyntax";
@@ -80,7 +74,6 @@
   */
  public void finalizeSyntax()
  {
    assert debugEnter(CLASS_NAME, "finalizeSyntax");
    // No implementation required.
  }
@@ -193,7 +186,6 @@
   */
  public int hashCode()
  {
    assert debugEnter(CLASS_NAME, "hashCode");
    int hashCode = 0;
@@ -223,7 +215,6 @@
   */
  public boolean equals(Object o)
  {
    assert debugEnter(CLASS_NAME, "equals", String.valueOf(o));
    if (o == null)
    {
@@ -254,7 +245,6 @@
   */
  public String toString()
  {
    assert debugEnter(CLASS_NAME, "toString");
    StringBuilder buffer = new StringBuilder();
    toString(buffer);
@@ -272,8 +262,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    assert debugEnter(CLASS_NAME, "toString",
                      "java.lang.StringBuilder");
    buffer.append("( ");
    buffer.append(getOID());