summaryrefslogtreecommitdiff
path: root/gnu/javax/sound/midi/file/ExtendedMidiFileFormat.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/javax/sound/midi/file/ExtendedMidiFileFormat.java')
-rw-r--r--gnu/javax/sound/midi/file/ExtendedMidiFileFormat.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/javax/sound/midi/file/ExtendedMidiFileFormat.java b/gnu/javax/sound/midi/file/ExtendedMidiFileFormat.java
index cb5a8e82d..4b065f3dc 100644
--- a/gnu/javax/sound/midi/file/ExtendedMidiFileFormat.java
+++ b/gnu/javax/sound/midi/file/ExtendedMidiFileFormat.java
@@ -38,7 +38,7 @@ exception statement from your version. */
package gnu.javax.sound.midi.file;
/**
- * ExtendedMidiFileFormat is a package private class that simply
+ * ExtendedMidiFileFormat is a package private class that simply
* adds the number of MIDI tracks for the MidiFileFormat class.
*
* @author Anthony Green (green@redhat.com)
@@ -47,17 +47,17 @@ class ExtendedMidiFileFormat
extends javax.sound.midi.MidiFileFormat
{
private int ntracks;
-
+
/**
* Get the number of tracks for this MIDI file.
- *
+ *
* @return the number of tracks for this MIDI file
*/
public int getNumberTracks()
{
return ntracks;
}
-
+
/**
* Create an ExtendedMidiFileFormat object from the given parameters.
*
@@ -68,7 +68,7 @@ class ExtendedMidiFileFormat
* @param microseconds the MIDI file length in microseconds
* @param ntracks the number of tracks
*/
- public ExtendedMidiFileFormat(int type, float divisionType, int resolution,
+ public ExtendedMidiFileFormat(int type, float divisionType, int resolution,
int bytes, long microseconds, int ntracks)
{
super(type, divisionType, resolution, bytes, microseconds);