==============================================================================
docs/output/demo8-tie.txt
addFilterBefore(x, CsrfFilter.class) twice. Both filters get order 1099.
==============================================================================


--- A registered first ---
executed order: [A, B]

--- chain positions ---
   5/12  MarkerFilterA                                        order=? (not in the registration table)
   6/12  MarkerFilterB                                        order=? (not in the registration table)

--- B registered first (-DTIE_REVERSED=true), nothing else changed ---
executed order: [B, A]

--- chain positions ---
   5/12  MarkerFilterB                                        order=? (not in the registration table)
   6/12  MarkerFilterA                                        order=? (not in the registration table)

The order number is identical in both runs. The executed order follows the order of
the addFilterBefore calls, because List.sort is stable - not because Spring Security
promises anything about ties.
