Skip to content

Commit

Permalink
Fixed code
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphiMC committed May 11, 2024
1 parent 9d00a51 commit 5c1db44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import net.raphimc.noteblocklib.model.Note;
import net.raphimc.noteblocklib.model.SongView;
import net.raphimc.noteblocklib.player.FullNoteConsumer;
import net.raphimc.noteblocklib.player.ISongPlayerCallback;
import net.raphimc.noteblocklib.player.SongPlayer;
import net.raphimc.noteblocklib.player.SongPlayerCallback;
import net.raphimc.noteblocklib.util.Instrument;
import net.raphimc.noteblocklib.util.SongResampler;
import net.raphimc.noteblocktool.audio.SoundMap;
Expand All @@ -44,7 +44,7 @@
import java.text.DecimalFormat;
import java.util.Optional;

public class SongPlayerFrame extends JFrame implements ISongPlayerCallback, FullNoteConsumer {
public class SongPlayerFrame extends JFrame implements SongPlayerCallback, FullNoteConsumer {

private static final String UNAVAILABLE_MESSAGE = "An error occurred while initializing the sound system.\nPlease make sure that your system supports the selected sound system.";
private static final DecimalFormat DECIMAL_FORMAT = new DecimalFormat("#.##");
Expand Down

0 comments on commit 5c1db44

Please sign in to comment.