Fix some javadoc 8 errors

This fixes the errors in the opsu src that the new html linter in
the Java 8 javadoc tool catches and classifies as error
(unless the linter is explicitly disabled)
This commit is contained in:
Peter Tissen 2015-05-25 17:00:56 +02:00
parent c1b38b2306
commit 363eca663c
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ public class MenuButton {
* Sets text to draw in the middle of the button.
* @param text the text to draw
* @param font the font to use when drawing
* @color the color to draw the text
* @param color the color to draw the text
*/
public void setText(String text, Font font, Color color) {
this.text = text;

View File

@ -139,7 +139,7 @@ public class BeatmapSet {
/**
* Checks whether the beatmap set matches a given condition.
* @param type the condition type (ar, cs, od, hp, bpm, length)
* @param operator the operator (=/==, >, >=, <, <=)
* @param operator the operator {@literal (=/==, >, >=, <, <=)}
* @param value the value
* @return true if the condition is met
*/