Skip to content

Commit

Permalink
Fix problematic Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pavly-gerges committed Aug 15, 2023
1 parent d510b46 commit 53d8c00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
* @author pavl_g
*/
public class Transition<I, O> {


/**
* The state of the transition.
*/
protected AutoState<I, O> nextState;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
* recommended, is through changing the name of the transition path before reusing it.
* </p>
*
* @param <I> the state input type
* @param <O> the tracer object type
* @author pavl_g
*/
public class DeterministicManager<I, O> extends TransitionalManager<I, O> {
Expand Down

0 comments on commit 53d8c00

Please sign in to comment.