< prev index next >

src/java.desktop/share/classes/javax/sound/midi/SysexMessage.java

Print this page

        

@@ -79,20 +79,20 @@
     /**
      * Status byte for System Exclusive message (0xF0, or 240).
      *
      * @see MidiMessage#getStatus
      */
-    public static final int SYSTEM_EXCLUSIVE                    = 0xF0; // 240
+    public static final int SYSTEM_EXCLUSIVE = 0xF0; // 240
 
     /**
      * Status byte for Special System Exclusive message (0xF7, or 247), which is
      * used in MIDI files. It has the same value as END_OF_EXCLUSIVE, which is
      * used in the real-time "MIDI wire" protocol.
      *
      * @see MidiMessage#getStatus
      */
-    public static final int SPECIAL_SYSTEM_EXCLUSIVE    = 0xF7; // 247
+    public static final int SPECIAL_SYSTEM_EXCLUSIVE = 0xF7; // 247
 
     /**
      * The data bytes for this system exclusive message. These are initialized
      * to {@code null} and are set explicitly by
      * {@link #setMessage(int, byte[], int, long) setMessage}.
< prev index next >