mirror of https://github.com/apache/lucene.git
SOLR-13484: ref guide
This commit is contained in:
parent
975a4f8f55
commit
e9d9f4dcc1
|
@ -42,7 +42,9 @@ public class StrUtils {
|
||||||
|
|
||||||
public static List<String> splitSmart(String s, char separator, boolean trimEmpty) {
|
public static List<String> splitSmart(String s, char separator, boolean trimEmpty) {
|
||||||
List<String> l = splitSmart(s, separator);
|
List<String> l = splitSmart(s, separator);
|
||||||
if (l.size() > 0 && l.get(0).isEmpty()) l.remove(0);
|
if(trimEmpty){
|
||||||
|
if (l.size() > 0 && l.get(0).isEmpty()) l.remove(0);
|
||||||
|
}
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue