I am parsing a MIDI file in Java. At first I create a sequence using:
Sequence sequence = MidiSystem.getSequence(paFile);
which throws checked IOException. Am I supposed to close this resource somehow? If so, why doesn't sequence or MidiSystem implement closeable?