cleanup: use Java-style array declaration
This commit is contained in:
@@ -43,7 +43,7 @@ public final class MultiChatHandler extends AbstractMaplePacketHandler {
|
||||
|
||||
int type = slea.readByte(); // 0 for buddys, 1 for partys
|
||||
int numRecipients = slea.readByte();
|
||||
int recipients[] = new int[numRecipients];
|
||||
int[] recipients = new int[numRecipients];
|
||||
for (int i = 0; i < numRecipients; i++) {
|
||||
recipients[i] = slea.readInt();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user