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
CompareFilter uses a combination of composition and inheritance that implicitly encourages changing the object's behavior after construction time.
We can clean this up by deprecating getCompareString and getEncodedValue and requiring those in a protected constructor. In this way, all the data that CompareFilter needs is in final fields.
The text was updated successfully, but these errors were encountered:
CompareFilter uses a combination of composition and inheritance that implicitly encourages changing the object's behavior after construction time.
We can clean this up by deprecating
getCompareString
andgetEncodedValue
and requiring those in a protected constructor. In this way, all the data thatCompareFilter
needs is infinal
fields.The text was updated successfully, but these errors were encountered: