From 64e40cd7dba64960e7b90d614c9b3aefb5b9adae Mon Sep 17 00:00:00 2001 From: Nicolas Senave Date: Wed, 18 Dec 2024 14:37:23 +0100 Subject: [PATCH] fix: mark roundabout control context as 'for removal' 'SIMPLE' should be used for a control that belong to a roundabout component. --- .../java/fr/insee/lunatic/model/flat/ControlContextType.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/fr/insee/lunatic/model/flat/ControlContextType.java b/src/main/java/fr/insee/lunatic/model/flat/ControlContextType.java index 1236bca..274188c 100644 --- a/src/main/java/fr/insee/lunatic/model/flat/ControlContextType.java +++ b/src/main/java/fr/insee/lunatic/model/flat/ControlContextType.java @@ -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 }