diff options
Diffstat (limited to 'examples/src/main/java/com/jsyn/examples/PlayPartials.java')
-rw-r--r-- | examples/src/main/java/com/jsyn/examples/PlayPartials.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/src/main/java/com/jsyn/examples/PlayPartials.java b/examples/src/main/java/com/jsyn/examples/PlayPartials.java index 72e1d7f..34a8f19 100644 --- a/examples/src/main/java/com/jsyn/examples/PlayPartials.java +++ b/examples/src/main/java/com/jsyn/examples/PlayPartials.java @@ -23,8 +23,6 @@ import com.jsyn.unitgen.LinearRamp; import com.jsyn.unitgen.Multiply; import com.jsyn.unitgen.SineOscillator; import com.jsyn.unitgen.UnitOscillator; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; /** * Play a enharmonic sine tones using JSyn oscillators. @@ -33,8 +31,6 @@ import org.slf4j.LoggerFactory; */ public class PlayPartials { - private static final Logger LOGGER = LoggerFactory.getLogger(PlayPartials.class); - private Synthesizer synth; private UnitOscillator[] osc; private Multiply[] multipliers; @@ -90,8 +86,6 @@ public class PlayPartials { // oscillator. lineOut.start(); - LOGGER.debug("You should now be hearing a sine wave. ---------"); - // Sleep while the sound is generated in the background. try { // Sleep for a few seconds. @@ -102,14 +96,11 @@ public class PlayPartials { } catch (InterruptedException e) { e.printStackTrace(); } - - LOGGER.debug("Stop playing. -------------------"); // Stop everything. synth.stop(); } public static void main(String[] args) { - LOGGER.debug("Java version = " + System.getProperty("java.version")); new PlayPartials().test(); } } |