Browse Source

Remove empty lines and unused using statements

af/merge-core
Jason Nelson 9 years ago
parent
commit
13c81138cd
  1. 4
      src/ImageSharp/Formats/Png/IPngDecoderOptions.cs
  2. 5
      src/ImageSharp/Formats/Png/Zlib/Adler32.cs
  3. 5
      src/ImageSharp/Formats/Png/Zlib/IChecksum.cs

4
src/ImageSharp/Formats/Png/IPngDecoderOptions.cs

@ -1,11 +1,7 @@
// Copyright (c) Six Labors and contributors. // Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
using System;
using System.Collections.Generic;
using System.IO;
using System.Text; using System.Text;
using SixLabors.ImageSharp.PixelFormats;
namespace SixLabors.ImageSharp.Formats.Png namespace SixLabors.ImageSharp.Formats.Png
{ {

5
src/ImageSharp/Formats/Png/Zlib/Adler32.cs

@ -78,10 +78,7 @@ namespace SixLabors.ImageSharp.Formats.Png.Zlib
public long Value public long Value
{ {
[MethodImpl(MethodImplOptions.AggressiveInlining)] [MethodImpl(MethodImplOptions.AggressiveInlining)]
get get => this.checksum;
{
return this.checksum;
}
} }
/// <inheritdoc/> /// <inheritdoc/>

5
src/ImageSharp/Formats/Png/Zlib/IChecksum.cs

@ -17,10 +17,7 @@ namespace SixLabors.ImageSharp.Formats.Png.Zlib
/// <summary> /// <summary>
/// Gets the data checksum computed so far. /// Gets the data checksum computed so far.
/// </summary> /// </summary>
long Value long Value { get; }
{
get;
}
/// <summary> /// <summary>
/// Resets the data checksum as if no update was ever called. /// Resets the data checksum as if no update was ever called.

Loading…
Cancel
Save