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
I have 3 classes
AbstractField (extending Ext.form.FieldContainer)
AbstractFieldsWrapper (extending AbstractField) : that redefine the method setValue without any doc
ChangePassword (extending AbstractFieldsWrapper) : that redefine the method setValue without any doc
The doc of AbstractFieldsWrapper#setValue indicates that the method overrides Field#setValue (ok) and itself (AbstractFieldsWrapper#setValue)
Adding /** @inheritdoc */ on the ChangePassword#setValue method makes everything fine again.
The text was updated successfully, but these errors were encountered:
I have 3 classes
AbstractField (extending Ext.form.FieldContainer)
AbstractFieldsWrapper (extending AbstractField) : that redefine the method setValue without any doc
ChangePassword (extending AbstractFieldsWrapper) : that redefine the method setValue without any doc
The doc of AbstractFieldsWrapper#setValue indicates that the method overrides Field#setValue (ok) and itself (AbstractFieldsWrapper#setValue)
Adding /** @inheritdoc */ on the ChangePassword#setValue method makes everything fine again.
The text was updated successfully, but these errors were encountered: