Skip to content

Commit

Permalink
Reverted DebuggerTypeProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
cschuchardt88 committed Dec 3, 2024
1 parent 04f5403 commit 29d244c
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 67 deletions.
3 changes: 0 additions & 3 deletions src/Plugins/LevelDBStore/IO/Data/LevelDB/DB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@

#nullable enable

using Neo.Plugins.Storage;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;

namespace Neo.IO.Storage.LevelDB
Expand All @@ -23,7 +21,6 @@ namespace Neo.IO.Storage.LevelDB
/// A DB is a persistent ordered map from keys to values.
/// A DB is safe for concurrent access from multiple threads without any external synchronization.
/// </summary>
[DebuggerTypeProxy(typeof(KeyValuePairsDebugView))]
public class DB : LevelDBHandle, IEnumerable<KeyValuePair<byte[], byte[]>>
{
private DB(nint handle) : base(handle) { }
Expand Down
25 changes: 0 additions & 25 deletions src/Plugins/LevelDBStore/Plugins/Storage/KeyValuePairs.cs

This file was deleted.

35 changes: 0 additions & 35 deletions src/Plugins/LevelDBStore/Plugins/Storage/KeyValuePairsDebugView.cs

This file was deleted.

2 changes: 0 additions & 2 deletions src/Plugins/LevelDBStore/Plugins/Storage/Snapshot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@
using Neo.Persistence;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using LSnapshot = Neo.IO.Storage.LevelDB.Snapshot;

namespace Neo.Plugins.Storage
{
[DebuggerTypeProxy(typeof(KeyValuePairsDebugView))]
internal class Snapshot : ISnapshot, IEnumerable<KeyValuePair<byte[], byte[]>>
{
private readonly DB _db;
Expand Down
2 changes: 0 additions & 2 deletions src/Plugins/LevelDBStore/Plugins/Storage/Store.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@
using Neo.Persistence;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;

namespace Neo.Plugins.Storage
{
[DebuggerTypeProxy(typeof(KeyValuePairsDebugView))]
internal class Store : IStore, IEnumerable<KeyValuePair<byte[], byte[]>>
{
private readonly DB _db;
Expand Down

0 comments on commit 29d244c

Please sign in to comment.