Skip to content

Commit fd1e569

Browse files
committed
Enforced [Obsolete()] on events
This was missed in a previous branch.
1 parent 31475d2 commit fd1e569

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

OnTopic/Repositories/ObservableTopicRepository.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ public event EventHandler<TopicRenameEventArgs>? TopicRenamed {
6666
}
6767

6868
/// <inheritdoc cref="TopicDeleted"/>
69-
[Obsolete("The DeleteEvent has been renamed to TopicDeleted")]
69+
[Obsolete("The DeleteEvent has been renamed to TopicDeleted", true)]
7070
public event EventHandler<DeleteEventArgs>? DeleteEvent;
7171

7272
/// <inheritdoc cref="TopicMoved"/>
73-
[Obsolete("The MoveEvent has been renamed to TopicMoved")]
73+
[Obsolete("The MoveEvent has been renamed to TopicMoved", true)]
7474
public event EventHandler<DeleteEventArgs>? MoveEvent;
7575

7676
/// <inheritdoc cref="TopicRenamed"/>
77-
[Obsolete("The RenameEvent has been renamed to TopicRenamed")]
77+
[Obsolete("The RenameEvent has been renamed to TopicRenamed", true)]
7878
public event EventHandler<RenameEventArgs>? RenameEvent;
7979

8080
/*==========================================================================================================================

0 commit comments

Comments
 (0)