Skip to content

Commit

Permalink
Actual release of v1.4.0. Forgot to remove a call to a removed deprec…
Browse files Browse the repository at this point in the history
…ated method.
  • Loading branch information
DV8FromTheWorld committed Apr 9, 2016
1 parent 49a191b commit 63039da
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/main/java/net/dv8tion/jda/audio/AudioWebSocket.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,10 @@ public void onTextMessage(WebSocket websocket, String message)
return;
}

if (api.isDebug())
{
if (speaking)
LOG.trace(user.getUsername() + " started transmitting audio."); //Replace with event.
else
LOG.trace(user.getUsername() + " stopped transmitting audio."); //Replace with event.
}
if (speaking)
LOG.trace(user.getUsername() + " started transmitting audio."); //Replace with event.
else
LOG.trace(user.getUsername() + " stopped transmitting audio."); //Replace with event.
break;
}
default:
Expand Down

0 comments on commit 63039da

Please sign in to comment.