Skip to content

Commit 003a768

Browse files
Remove extraneous usings
1 parent 63a9a2e commit 003a768

File tree

13 files changed

+10
-60
lines changed

13 files changed

+10
-60
lines changed

src/TimeZoneNames.DataBuilder/DataExtractor.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO;
4-
using System.IO.Compression;
5-
using System.Linq;
1+
using System.IO.Compression;
62
using System.Text.Json;
73
using System.Text.Json.Nodes;
8-
using System.Threading.Tasks;
94
using System.Xml.Linq;
105
using System.Xml.XPath;
116
using NodaTime;

src/TimeZoneNames.DataBuilder/Downloader.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.IO;
3-
using System.Net.Http;
4-
using System.Threading.Tasks;
1+
using System.Net.Http;
52
using SharpCompress.Readers;
63

74
namespace TimeZoneNames.DataBuilder;

src/TimeZoneNames.DataBuilder/Program.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
using System.IO;
3-
using System.Reflection;
1+
using System.Reflection;
42

53
namespace TimeZoneNames.DataBuilder;
64

src/TimeZoneNames/OrderedDictionary.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
using System;
21
using System.Collections;
3-
using System.Collections.Generic;
42
using System.Collections.Specialized;
5-
using System.Linq;
63

74
namespace TimeZoneNames;
85

src/TimeZoneNames/TZNames.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
using System;
2-
using System.Collections.Concurrent;
3-
using System.Collections.Generic;
1+
using System.Collections.Concurrent;
42
using System.ComponentModel;
53
using System.Globalization;
6-
using System.Linq;
74
using TimeZoneConverter;
85

96
namespace TimeZoneNames;

src/TimeZoneNames/TimeZoneData.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.IO.Compression;
4-
using System.Linq;
1+
using System.IO.Compression;
52
using System.Security;
63
using System.Text.Json;
74
using System.Text.Json.Serialization;

test/TimeZoneNames.Tests/DisplayNamesTests.cs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Globalization;
4-
using System.IO;
5-
using System.Linq;
1+
using System.Globalization;
62
using System.Runtime.InteropServices;
7-
using System.Threading.Tasks;
83
using TimeZoneConverter;
9-
using VerifyXunit;
10-
using Xunit;
114
using Xunit.Abstractions;
125

136
namespace TimeZoneNames.Tests;

test/TimeZoneNames.Tests/Extensions.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using System.Collections.Generic;
2-
31
namespace TimeZoneNames.Tests;
42

53
internal static class Extensions

test/TimeZoneNames.Tests/FixedTimeZonesTests.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
using System.IO;
2-
using System.Threading.Tasks;
3-
using VerifyXunit;
4-
using Xunit;
5-
6-
namespace TimeZoneNames.Tests;
1+
namespace TimeZoneNames.Tests;
72

83
[UsesVerify]
94
public class FixedTimeZonesTests

test/TimeZoneNames.Tests/TestData.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using System.Collections.Generic;
2-
using System.Linq;
3-
41
namespace TimeZoneNames.Tests;
52

63
internal static class TestData

0 commit comments

Comments
 (0)