> }
>
> - if (templateOptions.getMemory().isPresent()) {
> - containerConfigBuilder.memory(templateOptions.getMemory().get());
> + if (templateOptions.getMemory() != null) {Simplify this by removing the null check conditionals? These methods accept null values, so let's call them directly. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/178/files#r33426261
