> @@ -201,4 +203,18 @@ public final Date rfc1123DateParse(String toParse)
> throws IllegalArgumentExcepti
> }
> }
> }
> +
> + @Override
> + public Date iso8601DateParseWithOptionalTZ(String toParse)
> + throws IllegalArgumentException {
> + try {
> + return iso8601DateParse(toParse);
> + } catch (IllegalArgumentException orig) {
> + try {
> + return iso8601SecondsDateParse(toParse);
> + } catch (IllegalArgumentException ie) {
[minor] rename `ie` to `ignored`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/456/files#r15459602