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:
authormarshall-lerner <66791488+marshall-lerner@users.noreply.github.com>2022-02-11 19:03:05 +0300
committerGitHub <noreply@github.com>2022-02-11 19:03:05 +0300
commit7f157a82ef9359978eabafc4f591fa06b90a0fec (patch)
tree9083a3098823eae84ddccc6cc5b7bb66991a643a /Mono.Debugging
parent41bca7a98963edd5fb19b3426d317323dec2aa7c (diff)
Style changes
Diffstat (limited to 'Mono.Debugging')
-rw-r--r--Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs b/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
index 31f4da4..7e9f317 100644
--- a/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
+++ b/Mono.Debugging/Mono.Debugging.Client/BreakpointStore.cs
@@ -180,8 +180,7 @@ namespace Mono.Debugging.Client
var breakpointsToRemove = new List<BreakEvent> ();
foreach (var b in InternalGetBreakpoints ()) {
- if (b is Breakpoint bp && FileNameEquals(bp.FileName, filename)
- &&
+ if (b is Breakpoint bp && FileNameEquals(bp.FileName, filename) &&
(bp.OriginalLine == line || bp.Line == line) &&
(bp.OriginalColumn == column || bp.Column == column)) {
breakpointsToRemove.Add (bp);
@@ -530,7 +529,6 @@ namespace Mono.Debugging.Client
OnChanged ();
}
-
void OnBreakEventRemoved (BreakEvent be)
{
BreakEventRemoved?.Invoke (this, new BreakEventArgs (be));
@@ -542,7 +540,6 @@ namespace Mono.Debugging.Client
OnChanged ();
}
-
void OnChanged ()
{
Changed?.Invoke (this, EventArgs.Empty);