android/src/main/java/com/facebook/spectrum/options/DecodeOptions.java [50:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private Builder(final ImagePixelSpecification outputPixelSpecification) {
      super();
      outputPixelSpecification(outputPixelSpecification);
    }

    /**
     * If set, defines the pixel specification images should be converted to before being passed to
     * the compressor. An exception will be thrown if the pixel specification doesn't fit the image
     * format.
     */
    public Builder outputPixelSpecification(
        final ImagePixelSpecification outputPixelSpecification) {
      this.outputPixelSpecification = Preconditions.checkNotNull(outputPixelSpecification);
      return this;
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



android/src/main/java/com/facebook/spectrum/options/TransformOptions.java [50:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private Builder(final ImagePixelSpecification outputPixelSpecification) {
      super();
      outputPixelSpecification(outputPixelSpecification);
    }

    /**
     * If set, defines the pixel specification images should be converted to before being passed to
     * the compressor. An exception will be thrown if the pixel specification doesn't fit the image
     * format.
     */
    public Builder outputPixelSpecification(
        final ImagePixelSpecification outputPixelSpecification) {
      this.outputPixelSpecification = Preconditions.checkNotNull(outputPixelSpecification);
      return this;
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



