diff options
author | Anthony Green <green@redhat.com> | 2005-09-26 17:24:00 +0000 |
---|---|---|
committer | Anthony Green <green@redhat.com> | 2005-09-26 17:24:00 +0000 |
commit | 2ba8c09de5bf8e415735164565fb1b820187df24 (patch) | |
tree | 97e3d1c8326210a3a6cfca919d8ebb1c191443e9 /javax/sound/midi/Sequence.java | |
parent | ef79c4f14a52a437d4b3154221bd63a434eec9de (diff) | |
download | classpath-2ba8c09de5bf8e415735164565fb1b820187df24.tar.gz |
2005-09-26 Anthony Green <green@redhat.com>
* javax/sound/midi/Synthesizer.java (loadInstrument,
unloadInstrument, remapInstrument, loadAllInstruments,
unloadAllInstruments, unloadInstrument, loadInstrument): Don't
declare the unchecked IllegalArgumentException.
* javax/sound/midi/MidiSystem.java (getMidiDevice, write): Ditto.
* javax/sound/midi/ShortMessage.java: Fix 80-column formatting
problem.
* javax/sound/midi/Sequence.java: Ditto.
* javax/sound/midi/MidiMessage.java: Ditto.
* javax/sound/midi/MidiSystem.java: Ditto.
* javax/sound/midi/MidiFileFormat.java: Ditto.
Diffstat (limited to 'javax/sound/midi/Sequence.java')
-rw-r--r-- | javax/sound/midi/Sequence.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/javax/sound/midi/Sequence.java b/javax/sound/midi/Sequence.java index 5552cde3e..1a43d207c 100644 --- a/javax/sound/midi/Sequence.java +++ b/javax/sound/midi/Sequence.java @@ -206,7 +206,8 @@ public class Sequence // FIXME // How can this possible be computed? PPQ is pulses per quarter-note, // which is dependent on the tempo of the Sequencer. - throw new UnsupportedOperationException("Can't compute PPQ based lengths yet"); + throw new + UnsupportedOperationException("Can't compute PPQ based lengths yet"); } else { |