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

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/src/org/opends/sdk/responses/ResultImpl.java
@@ -36,19 +36,18 @@
/**
 * A generic result indicates the final status of an operation.
 */
final class ResultImpl extends AbstractResultImpl<Result> implements
    Result
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(ResultCode resultCode) throws NullPointerException
  ResultImpl(final ResultCode resultCode) throws NullPointerException
  {
    super(resultCode);
  }
@@ -78,6 +77,7 @@
  @Override
  Result getThis()
  {
    return this;