Skip to content

Commit

Permalink
Rename event to not have confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
csaba-sagi-sonarsource committed Jan 23, 2023
1 parent 75653af commit 68b81be
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -622,16 +622,16 @@ public class Repro_6643

public class Repro_6644
{
public event SomeDelegate OtherEvent
public event SomeDelegate SomeEvent
{
add
{
OtherEvent += value; // FN
SomeEvent += value; // FN
}

remove
{
OtherEvent -= value; // FN
SomeEvent -= value; // FN
}
}
}

0 comments on commit 68b81be

Please sign in to comment.