Skip to content

Commit c6377a6

Browse files
committed
Fixed JavaDoc
1 parent abcdce8 commit c6377a6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.xxmicloxx</groupId>
77
<artifactId>NoteBlockAPI</artifactId>
8-
<version>1.2.3.1</version>
8+
<version>1.2.4-SNAPSHOT</version>
99
<name>NoteBlockAPI</name>
1010

1111
<properties>

src/main/java/com/xxmicloxx/NoteBlockAPI/songplayer/RadioSongPlayer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public void playTick(Player player, int tick) {
8080

8181
/**
8282
* Returns if the SongPlayer will play Notes from two sources as stereo
83-
* @return
83+
* @return if is played stereo
8484
*/
8585
public boolean isStereo(){
8686
return stereo;

src/main/java/com/xxmicloxx/NoteBlockAPI/songplayer/SongPlayer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,8 @@ public void removePlayer(Player player) {
543543
* Removes a player from this SongPlayer
544544
* @param uuid of player to remove
545545
*/
546-
public void removePlayer(UUID player) {
547-
removePlayer(player, true);
546+
public void removePlayer(UUID uuid) {
547+
removePlayer(uuid, true);
548548
}
549549

550550
private void removePlayer(UUID player, boolean notify) {

0 commit comments

Comments
 (0)