Skip to content

Commit 3517453

Browse files
committed
Changed namespace name.
1 parent 49e9337 commit 3517453

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Memory/RemoteProcess.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Threading;
99
using System.Threading.Tasks;
1010
using ReClassNET.AddressParser;
11-
using ReClassNET.SymbolReader;
11+
using ReClassNET.Symbols;
1212
using ReClassNET.Util;
1313

1414
namespace ReClassNET.Memory
@@ -62,8 +62,8 @@ public class Section
6262

6363
private readonly List<Section> sections = new List<Section>();
6464

65-
private readonly Symbols symbols = new Symbols();
66-
public Symbols Symbols => symbols;
65+
private readonly SymbolStore symbols = new SymbolStore();
66+
public SymbolStore Symbols => symbols;
6767

6868
public bool IsValid => process != null && nativeHelper.IsProcessValid(process.Handle);
6969

ReClass.NET.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,9 @@
329329
</Compile>
330330
<Compile Include="Settings.cs" />
331331
<Compile Include="UI\ShellIcon.cs" />
332-
<Compile Include="SymbolReader\ComDisposableWrapper.cs" />
333-
<Compile Include="SymbolReader\SymbolReader.cs" />
334-
<Compile Include="SymbolReader\Symbols.cs" />
332+
<Compile Include="Symbols\ComDisposableWrapper.cs" />
333+
<Compile Include="Symbols\SymbolReader.cs" />
334+
<Compile Include="Symbols\SymbolStore.cs" />
335335
<Compile Include="UI\GlobalWindowManager.cs" />
336336
<Compile Include="UI\SettingsCheckBox.cs">
337337
<SubType>Component</SubType>

SymbolReader/ComDisposableWrapper.cs renamed to Symbols/ComDisposableWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Diagnostics.Contracts;
33
using System.Runtime.InteropServices;
44

5-
namespace ReClassNET.SymbolReader
5+
namespace ReClassNET.Symbols
66
{
77
class DisposableWrapper : IDisposable
88
{

SymbolReader/SymbolReader.cs renamed to Symbols/SymbolReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using ReClassNET.Memory;
66
using ReClassNET.Util;
77

8-
namespace ReClassNET.SymbolReader
8+
namespace ReClassNET.Symbols
99
{
1010
public class SymbolReader : IDisposable
1111
{

SymbolReader/Symbols.cs renamed to Symbols/SymbolStore.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using ReClassNET.Memory;
1010
using ReClassNET.Util;
1111

12-
namespace ReClassNET.SymbolReader
12+
namespace ReClassNET.Symbols
1313
{
1414
class DiaUtil : IDisposable
1515
{
@@ -50,7 +50,7 @@ public void Dispose()
5050
}
5151
}
5252

53-
public class Symbols
53+
public class SymbolStore
5454
{
5555
private const string BlackListFile = "blacklist.txt";
5656

@@ -64,7 +64,7 @@ public class Symbols
6464

6565
private readonly HashSet<string> moduleBlacklist = new HashSet<string>();
6666

67-
public Symbols()
67+
public SymbolStore()
6868
{
6969
ResolveSearchPath();
7070

0 commit comments

Comments
 (0)