Skip to content

Commit 68d1fd0

Browse files
committed
rename property
1 parent 717da4a commit 68d1fd0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SharpDbg.Infrastructure/Debugger/BreakpointManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public void ClearBreakpointsForFile(string filePath)
159159
{
160160
lock (_lock)
161161
{
162-
return _breakpoints.Values.FirstOrDefault(bp => bp.CorBreakpoint!.Raw == corBreakpoint);
162+
return _breakpoints.Values.FirstOrDefault(bp => bp.CorBreakpoint?.Raw == corBreakpoint);
163163
}
164164
}
165165

src/SharpDbg.Infrastructure/Debugger/ManagedDebugger_FrameSourceInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace SharpDbg.Infrastructure.Debugger;
1111

12-
public readonly record struct SourceInfo(string FilePath, int StartLine, int StartColumn, DecompiledSourceInfo? DecompilationReproductionInfo);
12+
public readonly record struct SourceInfo(string FilePath, int StartLine, int StartColumn, DecompiledSourceInfo? DecompiledSourceInfo);
1313
public class DecompiledSourceInfo
1414
{
1515
public required string TypeFullName { get; init; }

0 commit comments

Comments
 (0)