> @@ -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)) {good call --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/96/files#r19322290
