trevorflanagan commented on this pull request.
>
- public abstract Builder cpusSpeed(List<CpuSpeed> properties);
+ public abstract Builder cpuSpeeds(List<CpuSpeed> cpuSpeeds);
+
+ abstract Hypervisor autoBuild();
+
+ abstract List<Property> properties();
+
+ abstract List<DiskSpeed> diskSpeeds();
+
+ abstract List<CpuSpeed> cpuSpeeds();
+
+ public Hypervisor build() {
+ properties(properties() != null ? ImmutableList.copyOf(properties())
: null);
+ diskSpeeds(diskSpeeds() != null ? ImmutableList.copyOf(diskSpeeds())
: null);
+ cpuSpeeds(cpuSpeeds() != null ? ImmutableList.copyOf(cpuSpeeds()) :
null);
Thanks @nacx I have made those changes.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/369#discussion_r107396014