> @@ -64,7 +64,10 @@ private void resetState() {
>
> @Override public void endElement(String ignoredUri, String ignoredName,
> String qName) {
> if (qName.equals("OS")) {
> - os = OSType.fromValue(currentOrNull(currentText));
> + String osText = currentOrNull(currentText);
> + if (osText != null) {
Above, there's also a `osText.toUpperCase().equals("NULL")` check - needed here
too?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/94/files#r19126504