Ignore:
Timestamp:
08/05/08 08:30:04 (16 years ago)
Author:
bjn8
Message:

Fixed index out of bound bug - occured when my attribute was all white space

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/AttributeUtils.java

    r176 r187  
    658658               
    659659                attributeValuePair = attributeValuePair.trim();
     660               
     661                if(attributeValuePair.length() == 0)
     662                        return null;
    660663
    661664                int ind = attributeValuePair.indexOf(SEPARATOR_CHAR);
Note: See TracChangeset for help on using the changeset viewer.