Skip to content

Commit

Permalink
Fix API. Java is not Scala.
Browse files Browse the repository at this point in the history
  • Loading branch information
SoniEx2 committed Feb 19, 2016
1 parent 4179eb9 commit 64e909b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,7 @@ public static NoteBetterInstrument getInstrument(ItemStack is) {
* @param s The string.
* @return {@code true} if the given string is known to be a NoteBetter instrument.
*/
boolean isNoteBetterInstrument(String s) { return instance.isNoteBetterInstrument(s); }
public static boolean isNoteBetterInstrument(String s) {
return instance.isNoteBetterInstrument(s);
}
}

0 comments on commit 64e909b

Please sign in to comment.