--- old/src/java.desktop/share/classes/javax/sound/midi/SysexMessage.java 2016-08-12 17:03:14.000000000 +0300 +++ new/src/java.desktop/share/classes/javax/sound/midi/SysexMessage.java 2016-08-12 17:03:13.000000000 +0300 @@ -179,6 +179,7 @@ * @param length the length of the valid message data in the array, * including the status byte */ + @Override public void setMessage(byte[] data, int length) throws InvalidMidiDataException { int status = (data[0] & 0xFF); if ((status != 0xF0) && (status != 0xF7)) { @@ -233,6 +234,7 @@ * * @return a clone of this instance */ + @Override public Object clone() { byte[] newData = new byte[length]; System.arraycopy(data, 0, newData, 0, newData.length);