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)
57
57
if ( message . Command != Command )
58
58
throw new WrongParserException ( message , Command ) ;
59
59
T specificMessage = Parse ( message ) ;
60
- BeforeReceivedEvent ( ) ;
61
60
_received ? . Invoke ( this , specificMessage ) ;
62
- AfterReceivedEvent ( ) ;
63
61
}
64
-
65
- protected virtual void BeforeReceivedEvent ( ) { }
66
-
67
- protected virtual void AfterReceivedEvent ( ) { }
68
62
}
69
63
}
Original file line number Diff line number Diff line change @@ -18,10 +18,5 @@ public class HelloMessageHandler : BcpMessageHandler<HelloMessage>
18
18
19
19
public HelloMessageHandler ( BcpInterface bcpInterface )
20
20
: base ( bcpInterface ) { }
21
-
22
- protected override void BeforeReceivedEvent ( )
23
- {
24
- base . BeforeReceivedEvent ( ) ;
25
- }
26
21
}
27
22
}
You can’t perform that action at this time.
0 commit comments