Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan CHang <jonathan34c@gmail.com>2022-07-19 20:43:23 +0300
committerJonathan CHang <jonathan34c@gmail.com>2022-07-19 20:43:23 +0300
commitffbd0804f023ecb353e86c859730807d81c8d3dc (patch)
tree225d0d2d0d8bd02f46911fa1f12c6a25a3288371
parent02f592209c5a1b1b07dfcb0f630d0b5e4e40fdc7 (diff)
make naming in assembly more consistant hassymbol's'
-rw-r--r--Mono.Debugging/Mono.Debugging.Client/Assembly.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mono.Debugging/Mono.Debugging.Client/Assembly.cs b/Mono.Debugging/Mono.Debugging.Client/Assembly.cs
index 966e9e6..0e9dea1 100644
--- a/Mono.Debugging/Mono.Debugging.Client/Assembly.cs
+++ b/Mono.Debugging/Mono.Debugging.Client/Assembly.cs
@@ -44,7 +44,7 @@ namespace Mono.Debugging.Client
UserCode = userCode;
ProcessId = processId;
IsDynamic = isDynamic;
- HasSymbol = hasSymbol;
+ HasSymbols = hasSymbol;
}
public Assembly (string path)
{
@@ -77,7 +77,7 @@ namespace Mono.Debugging.Client
public long? ProcessId { get; private set; } = -1;
- public bool HasSymbol { get; private set; }
+ public bool HasSymbols { get; private set; }
public bool IsDynamic { get; private set; }
}