/* */
/* */ public MIDIPacket getPacket(int paramInt)
/* */ {
/* 165 */ if (this.readOnly) {
/* 166 */ if (paramInt >= this.numPacketsForReadOnly)
/* 167 */ throw new CAOutOfBoundsException("Can't Read past the number of packets in this list");
/* 168 */ return this.cachedMIDIPacketArray[paramInt];
/* */ }
/* 170 */ int i = numPackets();
/* 171 */ if (paramInt >= i) {
/* 172 */ throw new CAOutOfBoundsException("Can't Read past the number of packets in this list");
/* */ }
/* */
/* 175 */ int j = 4;
/* 176 */ int k = 0;
/* 177 */ for (int m = 0; m < paramInt; m++) {