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

matthew_swift
03.26.2009 e10a19e91d09aa4bf4dd1fabf048b46299899e35
Minor cleanup.
2 files modified
12 ■■■■■ changed files
sdk/build.xml 4 ●●● patch | view | raw | blame | history
sdk/src/org/opends/sdk/extensions/PasswordModifyRequest.java 8 ●●●● patch | view | raw | blame | history
sdk/build.xml
@@ -176,10 +176,12 @@
    <!-- Remove all dynamically-generated build files. -->
    <target name="clean"
            description="Clean up any files generated during the build process">
        <delete dir="${build.dir}" />
        <delete includeemptydirs="true">
            <fileset dir="${srcgen.dir}" includes="**/*" />
        </delete>
        <delete includeemptydirs="true">
            <fileset dir="${build.dir}" includes="**/*" />
        </delete>
    </target>
    <!-- Set the property valid.java.version if the java version is valid. -->
sdk/src/org/opends/sdk/extensions/PasswordModifyRequest.java
@@ -2,22 +2,22 @@
import static com.sun.opends.sdk.util.Messages.ERR_EXTOP_PASSMOD_CANNOT_DECODE_REQUEST;
import static org.opends.sdk.util.StaticUtils.getExceptionMessage;
import static com.sun.opends.sdk.util.Messages.*;
import static org.opends.sdk.util.StaticUtils.*;
import java.io.IOException;
import com.sun.opends.sdk.util.Message;
import org.opends.sdk.DecodeException;
import org.opends.sdk.ResultCode;
import org.opends.sdk.asn1.ASN1;
import org.opends.sdk.asn1.ASN1Reader;
import org.opends.sdk.asn1.ASN1Writer;
import org.opends.sdk.requests.AbstractExtendedRequest;
import org.opends.sdk.responses.Result;
import org.opends.sdk.util.ByteString;
import org.opends.sdk.util.ByteStringBuilder;
import com.sun.opends.sdk.util.Message;
/**