openstack-nova: fixing getInstanceId

This commit is contained in:
Adam Lowe 2012-03-18 14:36:07 +00:00 committed by Adrian Cole
parent b290a2e7c9
commit cd33c5d901
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public class FloatingIP implements Comparable<FloatingIP> {
}
public String getInstanceId() {
return this.fixedIp;
return this.instanceId;
}
@Override