> @@ -80,7 +81,12 @@ private void resetState() {
>        } else if (qName.equals("Category")) {
>           category = currentOrNull(currentText);
>        } else if (qName.equals("Location")) {
> -         location = currentOrNull(currentText);
> +         String locationField = currentOrNull(currentText);
> +         if (locationField != null) {
> +            for (String location : Splitter.on(';').split(locationField)) {

[minor] Use 
[`splitToList`](http://docs.guava-libraries.googlecode.com/git-history/v17.0/javadoc/com/google/common/base/Splitter.html#splitToList\(java.lang.CharSequence\))?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/96/files#r19321930

Reply via email to