Author: dkulp Date: Wed Dec 19 18:51:52 2012 New Revision: 1424023 URL: http://svn.apache.org/viewvc?rev=1424023&view=rev Log: Merged revisions 1424006 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes
........ r1424006 | dkulp | 2012-12-19 13:28:38 -0500 (Wed, 19 Dec 2012) | 10 lines Merged revisions 1423980 via git cherry-pick from https://svn.apache.org/repos/asf/cxf/trunk ........ r1423980 | dkulp | 2012-12-19 12:43:40 -0500 (Wed, 19 Dec 2012) | 2 lines Actually use the parameter that is passed in ........ ........ Modified: cxf/branches/2.5.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/StringUtils.java Modified: cxf/branches/2.5.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/StringUtils.java URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/StringUtils.java?rev=1424023&r1=1424022&r2=1424023&view=diff ============================================================================== --- cxf/branches/2.5.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/StringUtils.java (original) +++ cxf/branches/2.5.x-fixes/common/common/src/main/java/org/apache/cxf/common/util/StringUtils.java Wed Dec 19 18:51:52 2012 @@ -110,9 +110,9 @@ public final class StringUtils { return str1; } - public static List<String> getParts(String str, String sperator) { + public static List<String> getParts(String str, String seperator) { List<String> ret = new ArrayList<String>(); - List<String> parts = Arrays.asList(str.split("/")); + List<String> parts = Arrays.asList(str.split(seperator)); for (String part : parts) { if (!isEmpty(part)) { ret.add(part); @@ -121,8 +121,8 @@ public final class StringUtils { return ret; } - public static String getFirstNotEmpty(String str, String sperator) { - List<String> parts = Arrays.asList(str.split("/")); + public static String getFirstNotEmpty(String str, String seperator) { + List<String> parts = Arrays.asList(str.split(seperator)); for (String part : parts) { if (!isEmpty(part)) { return part;
