You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Boxhead uses the Stub in only one method. If we remove that dependency, it will be much more that the Stub drives the Boxhead. In the rendering code, we look at both the Boxhead and the Stub, when we could instead just use the Boxhead.
There are a few ways to decouple the Stub from the Boxhead:
_get_effective_number_of_columns() method of Boxhead could instead be replaced use final_columns()
enumerate where final_columns() should be used in the rendering code
The text was updated successfully, but these errors were encountered:
Currently the Boxhead uses the Stub in only one method. If we remove that dependency, it will be much more that the Stub drives the Boxhead. In the rendering code, we look at both the Boxhead and the Stub, when we could instead just use the Boxhead.
There are a few ways to decouple the Stub from the Boxhead:
_get_effective_number_of_columns()
method of Boxhead could instead be replaced usefinal_columns()
final_columns()
should be used in the rendering codeThe text was updated successfully, but these errors were encountered: