OneLiteFeatherNET / Microtus

Up to date Minestom fork caring about community, code quality & stability
https://wiki.microtus.dev
Other
5 stars 0 forks source link

Improve Contribution.md #36

Open OneLiteFeather opened 4 months ago

OneLiteFeather commented 4 months ago

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() {
    // ...
}