> @@ -184,6 +184,14 @@ public ListStackOptions sortDirection(SortDirection
> direction) {
> return this;
> }
>
> + /**
> + * Include nested stacks in the stack listing.
> + */
> + public ListStackOptions showNested(Boolean showNested) {
It seems passing a null object does not make sense here. Change to a primitive
`boolean` to enforce that and to simplify the body of this method.
I see you followed the approach of the other method that currently accepts a
boolean. Mind fixing that one too?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/199/files#r48137450