file MidiSynth.java
created: Mon May 07 11:21:30 2001
author Mark Elston (enhanced by Andrew Brown)
i think in public void stop()
there is a bad comparison, and it throws an exception when executed.
the comparison is
if (m_sequencer != null & m_sequencer.isOpen()) {
i think must be changed in
if (m_sequencer != null && m_sequencer.isOpen()) {
bye!