Show
Ignore:
Timestamp:
08/21/08 15:25:34 (5 months ago)
Author:
arneke
Message:

Tons of minor tweaks and fixes. Separated out the XStream stuff a bit more. Cleaned up dependencies.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/geowebcache/src/main/java/org/geowebcache/GeoWebCacheDispatcher.java

    r337 r338  
    203203                        + " given prefix " + servletPrefix); 
    204204            } 
    205             retStrs[0] = new String(splitStr[3]); 
     205            retStrs[0] = splitStr[3]; 
    206206            if(splitStr.length > 4) { 
    207                 retStrs[1] = new String(splitStr[4]); 
     207                retStrs[1] = splitStr[4]; 
    208208            } 
    209209        } else { 
     
    212212            } 
    213213            if (splitStr.length == 3) { 
    214                 retStrs[0] = new String(splitStr[2]); 
     214                retStrs[0] = splitStr[2]; 
    215215            } else { 
    216                 retStrs[0] = new String(splitStr[2]); 
    217                 retStrs[1] = new String(splitStr[3]); 
     216                retStrs[0] = splitStr[2]; 
     217                retStrs[1] = splitStr[3]; 
    218218            } 
    219219        }