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
The getter methods are different in how it documents whether it is deprecated. Firstly, it checks if the whole class has a deprecated flag, instead of checking whether the method specifically has that flag. This means that all getter methods would have the deprecated flag if the class itself has the tag. Secondly, it does not provide @since or version information regarding the deprecation.
Reproduction Steps
Run the generator
Expected Behavior
Getter documentation should match the setter documentation for deprecated methods.
Observed Behavior
The deprecated getter methods only have the tag @deprecated and no extra information such as @since or when the method was deprecated. Some getter methods mistakenly have the @deprecated tag on them. See DisplayCapabilities for an example.
Browser & Version Information
This is a generator bug, so all versions are affected.
The text was updated successfully, but these errors were encountered:
Bug Report
The getter methods are different in how it documents whether it is deprecated. Firstly, it checks if the whole class has a deprecated flag, instead of checking whether the method specifically has that flag. This means that all getter methods would have the deprecated flag if the class itself has the tag. Secondly, it does not provide
@since
or version information regarding the deprecation.Reproduction Steps
Run the generator
Expected Behavior
Getter documentation should match the setter documentation for deprecated methods.
Observed Behavior
The deprecated getter methods only have the tag
@deprecated
and no extra information such as@since
or when the method was deprecated. Some getter methods mistakenly have the@deprecated
tag on them. See DisplayCapabilities for an example.Browser & Version Information
This is a generator bug, so all versions are affected.
The text was updated successfully, but these errors were encountered: