Skip to content

Commit f06eae2

Browse files
committed
Clean up using statements
1 parent e36bd19 commit f06eae2

24 files changed

+9
-90
lines changed

QRCoder/PayloadGenerator/BezahlCode.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System;
22
using System.Text.RegularExpressions;
3-
#if NETSTANDARD1_3
4-
using System.Reflection;
5-
#endif
63

74
namespace QRCoder
85
{

QRCoder/PayloadGenerator/BitcoinAddress.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/BitcoinCashAddress.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/BitcoinLikeCryptoCurrencyAddress.cs

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Globalization;
5-
#if NETSTANDARD1_3
6-
using System.Reflection;
7-
#endif
85

96
namespace QRCoder
107
{

QRCoder/PayloadGenerator/Bookmark.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/CalendarEvent.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
#if NETSTANDARD1_3
3-
using System.Reflection;
4-
#endif
52

63
namespace QRCoder
74
{

QRCoder/PayloadGenerator/ContactData.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
#if NETSTANDARD1_3
3-
using System.Reflection;
4-
#endif
52

63
namespace QRCoder
74
{

QRCoder/PayloadGenerator/Geolocation.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/Girocode.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
#if NETSTANDARD1_3
3-
using System.Reflection;
4-
#endif
52

63
namespace QRCoder
74
{

QRCoder/PayloadGenerator/LitecoinAddress.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/MMS.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
#if NETSTANDARD1_3
3-
using System.Reflection;
4-
#endif
52

63
namespace QRCoder
74
{

QRCoder/PayloadGenerator/Mail.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
#if NETSTANDARD1_3
5-
using System.Reflection;
6-
#endif
74

85
namespace QRCoder
96
{

QRCoder/PayloadGenerator/MoneroTransaction.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
#if NETSTANDARD1_3
3-
using System.Reflection;
4-
#endif
52

63
namespace QRCoder
74
{

QRCoder/PayloadGenerator/OneTimePassword.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System;
22
using System.Text;
3-
#if NETSTANDARD1_3
4-
using System.Reflection;
5-
#endif
63

74
namespace QRCoder
85
{

QRCoder/PayloadGenerator/Payload.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/PhoneNumber.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/SMS.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
#if NETSTANDARD1_3
3-
using System.Reflection;
4-
#endif
52

63
namespace QRCoder
74
{

QRCoder/PayloadGenerator/ShadowSocksConfig.cs

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Text;
5-
#if NETSTANDARD1_3
6-
using System.Reflection;
7-
#endif
85

96
namespace QRCoder
107
{

QRCoder/PayloadGenerator/SkypeCall.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

QRCoder/PayloadGenerator/SlovenianUpnQr.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System;
22
using System.Text;
3-
#if NETSTANDARD1_3
4-
using System.Reflection;
5-
#endif
63

74
namespace QRCoder
85
{

QRCoder/PayloadGenerator/SwissQrCode.cs

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Text.RegularExpressions;
5-
#if NETSTANDARD1_3
6-
using System.Reflection;
7-
#endif
85

96
namespace QRCoder
107
{

QRCoder/PayloadGenerator/Url.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
#if NETSTANDARD1_3
3-
using System.Reflection;
4-
#endif
52

63
namespace QRCoder
74
{

QRCoder/PayloadGenerator/WhatsAppMessage.cs

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System;
22
using System.Text.RegularExpressions;
3-
#if NETSTANDARD1_3
4-
using System.Reflection;
5-
#endif
63

74
namespace QRCoder
85
{

QRCoder/PayloadGenerator/WiFi.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#if NETSTANDARD1_3
2-
using System.Reflection;
3-
#endif
4-
5-
namespace QRCoder
1+
namespace QRCoder
62
{
73
public static partial class PayloadGenerator
84
{

0 commit comments

Comments
 (0)