> + @Override
> + public BlockDevice apply(VirtualGuestBlockDevice input) {
> + return new BlockDevice(input.getDevice(),
> input.getVirtualDiskImage().getCapacity());
> + }
> + })
> + .toSortedSet(new Comparator<BlockDevice>() {
> + @Override
> + public int compare(BlockDevice b1, BlockDevice b2) {
> + return
> Integer.valueOf(b1.getDevice()).compareTo(Integer.valueOf(b2.getDevice()));
> + }
> + });
> + return set;
> + }
> +
> + private HashSet<NetworkComponent> getNetworkComponents(VirtualGuest
> virtualGuest) {
> + if(virtualGuest.getVirtualGuestNetworkComponents() == null) return
> null;
See comment above
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r11324407