removed SDF_01 & SDF_08 events from session state machine

This commit is contained in:
ialbert 2025-07-04 15:57:40 +03:00
parent b264a91769
commit d812faf77a

View file

@ -11,7 +11,6 @@ public class SdfGuardUtil {
case MKR -> {
return EnumSet.of(
SsnEvent.SDF_04,
SsnEvent.SDF_01,
SsnEvent.SDF_57
);
}
@ -19,9 +18,7 @@ public class SdfGuardUtil {
return EnumSet.of(
SsnEvent.SDF_04,
SsnEvent.SDF_13,
SsnEvent.SDF_08,
SsnEvent.SDF_21,
SsnEvent.SDF_01,
SsnEvent.SDF_57
);
}
@ -32,10 +29,8 @@ public class SdfGuardUtil {
public static EnumSet<SsnEvent> bySectionAfter7StepUnit() {
return EnumSet.of(
SsnEvent.SDF_04,
SsnEvent.SDF_01,
SsnEvent.SDF_57,
SsnEvent.SDF_13,
SsnEvent.SDF_08,
SsnEvent.SDF_21
);
}