Skip to content

Commit

Permalink
Set visibility of ChannelFsm::getFsm to public
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinherron committed Sep 23, 2022
1 parent 8b3d7ea commit c71e2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/digitalpetri/netty/fsm/ChannelFsm.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public boolean matches(State from, State to, Event event) {
this.fsm = builder.build(initialState);
}

Fsm<State, Event> getFsm() {
public Fsm<State, Event> getFsm() {
return fsm;
}

Expand Down

0 comments on commit c71e2b2

Please sign in to comment.