nsporillo / GlobalWarming

Server side global warming mechanics in Minecraft!
GNU Lesser General Public License v3.0
473 stars 46 forks source link

Update GlobalWarming.java #54

Closed anurag01a closed 3 years ago

anurag01a commented 3 years ago

Updated all the individual single line comments (//) to doc comments (/*../) to maintain uniformity in the code.

Geolykt commented 3 years ago

Unless I'm not looking at the full picture it seems like this isn't uniform to the rest of the code. Additionally such comments would break all standards that I know of as only Methods, Classes and Fields should have Javadoc comments. You might want to change it to multiline comments (/* ..... */) but Javadoc comments are not appropriate for documentation within Methods.

This of course is opinion which varies from person to person