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.
/// </summary>
/// <param name="decoder">The <see cref="JpegDecoderCore"/> instance</param>
/// <returns>MCUs processed</returns>
public int ProcessBlocks(JpegDecoderCore decoder)
public void ProcessBlocks(JpegDecoderCore decoder)
{
int blockCount = 0;
int mcu = 0;
@ -230,8 +229,6 @@ namespace ImageSharp.Formats.Jpg
// for mx
}
return mcu;
}
private void ResetDc()

Loading…
Cancel
Save