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
Most of our classes constructors are private. This effectively prevents the classes to be extended as it prevents a call to super.
We should maybe make them protected which would let consumers extends the classes if they want to enrich the data.
The text was updated successfully, but these errors were encountered:
Most of our classes constructors are
private
. This effectively prevents the classes to be extended as it prevents a call tosuper
.We should maybe make them
protected
which would let consumers extends the classes if they want to enrich the data.The text was updated successfully, but these errors were encountered: