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
To get more consistency in our code, we decided to use this template for deprecations which is applied to all contributions. In order to do so, you have to add this into our CONTRIBUTING.md
/**
* This method does ...
* @deprecated As of <product> <version>, because ... use
* {@link #replacementMethod()} instead.
*/
@Deprecated
public void deprecatedMethod() {
// ...
}
The text was updated successfully, but these errors were encountered:
To get more consistency in our code, we decided to use this template for deprecations which is applied to all contributions. In order to do so, you have to add this into our CONTRIBUTING.md
The text was updated successfully, but these errors were encountered: