Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Struct/BNDisassemblyTextLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public override string ToString()

public override bool Equals(object? rawOther)
{
InstructionTextToken? other = rawOther as InstructionTextToken;
DisassemblyTextLine? other = rawOther as DisassemblyTextLine;

if (other is null)
{
Expand Down
2 changes: 1 addition & 1 deletion Struct/BNLinearDisassemblyLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public override string ToString()

public override bool Equals(object? rawOther)
{
InstructionTextToken? other = rawOther as InstructionTextToken;
LinearDisassemblyLine? other = rawOther as LinearDisassemblyLine;

if (other is null)
{
Expand Down
Loading