File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed
Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -57,13 +57,7 @@ public void Handle(BcpMessage message)
5757 if ( message . Command != Command )
5858 throw new WrongParserException ( message , Command ) ;
5959 T specificMessage = Parse ( message ) ;
60- BeforeReceivedEvent ( ) ;
6160 _received ? . Invoke ( this , specificMessage ) ;
62- AfterReceivedEvent ( ) ;
6361 }
64-
65- protected virtual void BeforeReceivedEvent ( ) { }
66-
67- protected virtual void AfterReceivedEvent ( ) { }
6862 }
6963}
Original file line number Diff line number Diff line change @@ -18,10 +18,5 @@ public class HelloMessageHandler : BcpMessageHandler<HelloMessage>
1818
1919 public HelloMessageHandler ( BcpInterface bcpInterface )
2020 : base ( bcpInterface ) { }
21-
22- protected override void BeforeReceivedEvent ( )
23- {
24- base . BeforeReceivedEvent ( ) ;
25- }
2621 }
2722}
You can’t perform that action at this time.
0 commit comments