Ignore:
Timestamp:
05/19/08 12:03:18 (16 years ago)
Author:
ra33
Message:

Fixed a bunch of problems with rectangles and resizing the window, as well as adding some more unit tests etc.

File:
1 edited

Legend:

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

    r50 r67  
    587587         *            The String to strip
    588588         * @return The part of the String that is after a colon if there is one, or
    589          *         null if there is no colon
     589         *         the entire string if there is no colon
    590590         */
    591591        public static String stripValue(String toStrip) {
    592592                int ind = toStrip.lastIndexOf(SEPARATOR_CHAR);
    593593                if (ind < 0)
    594                         return null;
     594                        return toStrip;
    595595
    596596                toStrip = toStrip.substring(ind + 1);
Note: See TracChangeset for help on using the changeset viewer.