Skip to content

Commit

Permalink
fix: mark roundabout control context as 'for removal'
Browse files Browse the repository at this point in the history
'SIMPLE' should be used for a control that belong to a roundabout component.
  • Loading branch information
nsenave committed Dec 18, 2024
1 parent 8dea8d4 commit 64e40cd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ public enum ControlContextType {
/** Control at row level of a roster for loop (i.e. dynamic table). */
ROW,

/** Special type of control for roundabouts. */
/** Special type of control for roundabouts.
* @deprecated Should not be used, a roundabout control is a 'SIMPLE' control in a roundabout component. */
@Deprecated(since = "3.15.3", forRemoval = true)
ROUNDABOUT

}

0 comments on commit 64e40cd

Please sign in to comment.