andreaturli commented on this pull request.


> +   }
+
+   private final Location location;
+
+   @Inject
+   public NeutronFloatingIpToFloatingIp(@Assisted Location location) {
+      this.location = location;
+   }
+
+   @Override
+   public FloatingIP apply(@Nullable 
org.jclouds.openstack.neutron.v2.domain.FloatingIP floatingIP) {
+      FloatingIP.Builder<?> builder = FloatingIP.builder();
+      builder.id(floatingIP.getId());
+      builder.ip(floatingIP.getFloatingIpAddress());
+      builder.fixedIp(floatingIP.getFixedIpAddress());
+      builder.instanceId(floatingIP.getPortId());

ouch this function is not used anyway, so I'll remove it

-- 
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/pull/1178#discussion_r168442933

Reply via email to