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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/interop/LazyDN.java
@@ -87,7 +87,6 @@
   */
  public LazyDN(String dnString)
  {
    this.dnString  = dnString;
    this.decodedDN = null;
  }
@@ -101,7 +100,6 @@
  public boolean isNullDN()
         throws RuntimeException
  {
    return getDecodedDN().isNullDN();
  }
@@ -114,7 +112,6 @@
  public int getNumComponents()
         throws RuntimeException
  {
    return getDecodedDN().getNumComponents();
  }
@@ -139,7 +136,6 @@
  public RDN getRDN(int pos)
         throws RuntimeException
  {
    return getDecodedDN().getRDN(pos);
  }
@@ -152,7 +148,6 @@
  public DN getParent()
         throws RuntimeException
  {
    return getDecodedDN().getParent();
  }
@@ -165,7 +160,6 @@
  public DN getParentDNInSuffix()
         throws RuntimeException
  {
    return getDecodedDN().getParentDNInSuffix();
  }
@@ -178,7 +172,6 @@
  public DN concat(RDN rdn)
         throws RuntimeException
  {
    return getDecodedDN().concat(rdn);
  }
@@ -191,7 +184,6 @@
  public DN concat(RDN[] rdnComponents)
         throws RuntimeException
  {
    return getDecodedDN().concat(rdnComponents);
  }
@@ -204,7 +196,6 @@
  public DN concat(DN relativeBaseDN)
         throws RuntimeException
  {
    return getDecodedDN().concat(relativeBaseDN);
  }
@@ -217,7 +208,6 @@
  public boolean isDescendantOf(DN dn)
         throws RuntimeException
  {
    return getDecodedDN().isDescendantOf(dn);
  }
@@ -230,7 +220,6 @@
  public boolean isAncestorOf(DN dn)
         throws RuntimeException
  {
    return getDecodedDN().isAncestorOf(dn);
  }
@@ -243,7 +232,6 @@
  public boolean equals(Object o)
         throws RuntimeException
  {
    return getDecodedDN().equals(o);
  }
@@ -256,7 +244,6 @@
  public int hashCode()
         throws RuntimeException
  {
    return getDecodedDN().hashCode();
  }
@@ -268,7 +255,6 @@
  @Override()
  public String toString()
  {
    return dnString;
  }
@@ -280,7 +266,6 @@
  @Override()
  public void toString(StringBuilder buffer)
  {
    buffer.append(dnString);
  }
@@ -293,7 +278,6 @@
  public String toNormalizedString()
         throws RuntimeException
  {
    return getDecodedDN().toNormalizedString();
  }
@@ -306,7 +290,6 @@
  public void toNormalizedString(StringBuilder buffer)
         throws RuntimeException
  {
    getDecodedDN().toNormalizedString(buffer);
  }
@@ -319,7 +302,6 @@
  public int compareTo(DN dn)
         throws RuntimeException
  {
    return getDecodedDN().compareTo(dn);
  }
@@ -335,7 +317,6 @@
  private DN getDecodedDN()
          throws RuntimeException
  {
    if (decodedDN == null)
    {
      try