Browse Source

drop return

af/merge-core
Scott Williams 9 years ago
parent
commit
56702de234
  1. 5
      src/ImageSharp.Formats.Jpeg/Components/Decoder/JpegScanDecoder.cs

5
src/ImageSharp.Formats.Jpeg/Components/Decoder/JpegScanDecoder.cs

@ -118,8 +118,7 @@ namespace ImageSharp.Formats.Jpg
/// Reads the blocks from the <see cref="JpegDecoderCore"/>-s stream, and processes them into the corresponding <see cref="JpegPixelArea"/> instances. /// Reads the blocks from the <see cref="JpegDecoderCore"/>-s stream, and processes them into the corresponding <see cref="JpegPixelArea"/> instances.
/// </summary> /// </summary>
/// <param name="decoder">The <see cref="JpegDecoderCore"/> instance</param> /// <param name="decoder">The <see cref="JpegDecoderCore"/> instance</param>
/// <returns>MCUs processed</returns> public void ProcessBlocks(JpegDecoderCore decoder)
public int ProcessBlocks(JpegDecoderCore decoder)
{ {
int blockCount = 0; int blockCount = 0;
int mcu = 0; int mcu = 0;
@ -230,8 +229,6 @@ namespace ImageSharp.Formats.Jpg
// for mx // for mx
} }
return mcu;
} }
private void ResetDc() private void ResetDc()

Loading…
Cancel
Save