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

Matthew Swift
29.55.2013 4aa1cf5e26d49ab1273d6affc58a5ac70b870ec4
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/responses/ResultImpl.java
@@ -34,33 +34,14 @@
 */
final class ResultImpl extends AbstractResultImpl<Result> implements Result {
    /**
     * Creates a new generic result using the provided result code.
     *
     * @param resultCode
     *            The result code.
     * @throws NullPointerException
     *             If {@code resultCode} was {@code null}.
     */
    ResultImpl(final ResultCode resultCode) {
        super(resultCode);
    }
    /**
     * Creates a new result that is an exact copy of the provided result.
     *
     * @param result
     *            The result to be copied.
     * @throws NullPointerException
     *             If {@code result} was {@code null} .
     */
    ResultImpl(final Result result) {
        super(result);
    }
    /**
     * {@inheritDoc}
     */
    ResultImpl(final ResultCode resultCode) {
        super(resultCode);
    }
    @Override
    public String toString() {
        final StringBuilder builder = new StringBuilder();