Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit dd86057

Browse files
committed
Move Static Accessors to SS.Reflection namespace
1 parent bddcc7b commit dd86057

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/ServiceStack.Text/Common/WriteType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
using System.IO;
1616
using System.Linq;
1717
using System.Reflection;
18+
using ServiceStack.Reflection;
1819
using ServiceStack.Text.Json;
19-
using ServiceStack.Text.Reflection;
2020

2121
namespace ServiceStack.Text.Common
2222
{

src/ServiceStack.Text/CsvSerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
using System.Reflection;
66
using System.Text;
77
using System.Threading;
8+
using ServiceStack.Reflection;
89
using ServiceStack.Text.Common;
910
using ServiceStack.Text.Jsv;
10-
using ServiceStack.Text.Reflection;
1111

1212
namespace ServiceStack.Text
1313
{

src/ServiceStack.Text/CsvWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;
5+
using ServiceStack.Reflection;
56
using ServiceStack.Text.Common;
6-
using ServiceStack.Text.Reflection;
77

88
namespace ServiceStack.Text
99
{

src/ServiceStack.Text/Reflection/StaticAccessors.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#if !XBOX
1616
using System.Linq.Expressions;
1717
#endif
18-
namespace ServiceStack.Text.Reflection
18+
namespace ServiceStack.Reflection
1919
{
2020
//Also exists in ServiceStack.Common in ServiceStack.Reflection namespace
2121
public static class StaticAccessors

tests/ServiceStack.Text.Tests/StaticAccessorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using NUnit.Framework;
2-
using ServiceStack.Text.Reflection;
2+
using ServiceStack.Reflection;
33

44
namespace ServiceStack.Text.Tests
55
{

0 commit comments

Comments
 (0)