metronome: Remove redundant initializer
This commit is contained in:
@@ -84,7 +84,7 @@ public class MetronomePlugin extends Plugin
|
|||||||
File audioFile = new File(path);
|
File audioFile = new File(path);
|
||||||
if (audioFile.exists())
|
if (audioFile.exists())
|
||||||
{
|
{
|
||||||
AudioInputStream audioStream = null;
|
AudioInputStream audioStream;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
audioStream = AudioSystem.getAudioInputStream(audioFile);
|
audioStream = AudioSystem.getAudioInputStream(audioFile);
|
||||||
|
|||||||
Reference in New Issue
Block a user