Browse Source

Moved using inside namespace.

pull/1/head
dirk 10 years ago
parent
commit
2ca895ded1
  1. 2
      src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs
  2. 3
      src/ImageSharp/Quantizers/Wu/WuQuantizer.cs
  3. 3
      src/ImageSharp/Samplers/Processors/RotateProcessor.cs

2
src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs

@ -3,8 +3,6 @@
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
// </copyright> // </copyright>
using System.Numerics;
namespace ImageSharp.Formats namespace ImageSharp.Formats
{ {
using System; using System;

3
src/ImageSharp/Quantizers/Wu/WuQuantizer.cs

@ -3,12 +3,11 @@
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
// </copyright> // </copyright>
using System.Numerics;
namespace ImageSharp.Quantizers namespace ImageSharp.Quantizers
{ {
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Numerics;
using System.Threading.Tasks; using System.Threading.Tasks;
/// <summary> /// <summary>

3
src/ImageSharp/Samplers/Processors/RotateProcessor.cs

@ -3,10 +3,9 @@
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
// </copyright> // </copyright>
using System;
namespace ImageSharp.Processors namespace ImageSharp.Processors
{ {
using System;
using System.Numerics; using System.Numerics;
using System.Threading.Tasks; using System.Threading.Tasks;

Loading…
Cancel
Save