core/src/main/java/flex/messaging/io/amfx/AmfxInput.java [291:300]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int length = 10;
        String len = attributes.getValue("length");
        if (len != null) {
            try {
                len = len.trim();
                length = Integer.parseInt(len);
                if (length < 0)
                    throw new NumberFormatException();
            } catch (NumberFormatException ex) {
                throw new MessageException("Invalid array length: " + len);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/main/java/flex/messaging/io/amfx/AmfxInput.java [377:386]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int length = 10;
        String len = attributes.getValue("length");
        if (len != null) {
            try {
                len = len.trim();
                length = Integer.parseInt(len);
                if (length < 0)
                    throw new NumberFormatException();
            } catch (NumberFormatException ex) {
                throw new MessageException("Invalid array length: " + len);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



