Skip to content

Commit

Permalink
remove usings
Browse files Browse the repository at this point in the history
  • Loading branch information
sungam3r committed Jan 21, 2024
1 parent 3ffcda1 commit 510621a
Show file tree
Hide file tree
Showing 22 changed files with 2 additions and 36 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.Linq;
using Destructurama.Attributed.Tests.Support;
using NUnit.Framework;
using Serilog;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
using NUnit.Framework;
using Serilog;
using Serilog.Events;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

namespace Destructurama.Attributed.Tests
{
Expand Down Expand Up @@ -100,7 +97,7 @@ class Dependency
class CustomEnumerableDestructionIgnored : IEnumerable<int>

Check warning on line 97 in src/Destructurama.Attributed.Tests/IgnoreNullPropertiesTests.cs

View workflow job for this annotation

GitHub Actions / ubuntu-latest

Accessibility modifiers required
{
public int Integer { get; set; }

public Dependency? Dependency { get; set; }

public IEnumerator<int> GetEnumerator()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using NUnit.Framework;
using Serilog;
using Serilog.Events;
using System.Linq;

namespace Destructurama.Attributed.Tests
{
Expand Down
2 changes: 0 additions & 2 deletions src/Destructurama.Attributed.Tests/MaskedAttributeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
using NUnit.Framework;
using Serilog;
using Serilog.Events;
using System;
using System.Linq;

namespace Destructurama.Attributed.Tests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
using NUnit.Framework;
using Serilog;
using Serilog.Events;
using System;
using System.Linq;

namespace Destructurama.Attributed.Tests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using NUnit.Framework;
using Serilog;
using Serilog.Events;
using System.Linq;

namespace Destructurama.Attributed.Tests
{
Expand Down
3 changes: 1 addition & 2 deletions src/Destructurama.Attributed.Tests/Support/DelegatingSink.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using Serilog;
using Serilog;
using Serilog.Core;
using Serilog.Events;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Reflection;
using Destructurama.Util;
using Serilog.Core;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Diagnostics.CodeAnalysis;
using Serilog.Core;
using Serilog.Events;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;

namespace Destructurama.Attributed
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using Serilog.Core;
using Serilog.Events;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using Serilog.Core;
using Serilog.Events;

Expand Down
3 changes: 0 additions & 3 deletions src/Destructurama.Attributed/Attributed/LogMaskedAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Collections.Generic;
using System.Linq;
using Serilog.Core;
using Serilog.Events;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Diagnostics.CodeAnalysis;
using System.Text.RegularExpressions;
using Serilog.Core;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

using Serilog.Core;
using Serilog.Events;
using System;
using System.Diagnostics.CodeAnalysis;

namespace Destructurama.Attributed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Diagnostics.CodeAnalysis;
using Serilog.Core;
using Serilog.Events;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Collections.Concurrent;

namespace Destructurama.Attributed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;

namespace Destructurama.Attributed
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
using Destructurama.Attributed;
using Serilog;
using Serilog.Configuration;
using System;
using Serilog.Core;
using System.Runtime.CompilerServices;

Expand Down
1 change: 0 additions & 1 deletion src/Destructurama.Attributed/Util/AttributeFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System.Linq;
using System.Reflection;

namespace Destructurama.Util
Expand Down
1 change: 0 additions & 1 deletion src/Destructurama.Attributed/Util/CacheEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using Serilog.Core;
using Serilog.Events;

Expand Down
3 changes: 0 additions & 3 deletions src/Destructurama.Attributed/Util/GetablePropertyFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;

namespace Destructurama.Util
Expand Down

0 comments on commit 510621a

Please sign in to comment.