The constructors for IntQuestion have this curious sequence:
clear();
setDefaultValue(value);
And clear() is defined as { setValue(defaultValue); }
So the code is almost circular ...
set the value to the default value
set the default value to the value, which is now the default value
!!
clear();
setDefaultValue(value);
And clear() is defined as { setValue(defaultValue); }
So the code is almost circular ...
set the value to the default value
set the default value to the value, which is now the default value
!!