Skip to content

Commit

Permalink
renamed the field hostip to hostIp and removed duplicated methods
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeM525 committed Aug 2, 2024
1 parent 1a55f08 commit 2a376f3
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions engine/schema/src/main/java/com/cloud/storage/VolumeVO.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public class VolumeVO implements Volume {
private long dataCenterId;

@Column(name = "host_ip")
private String hostip;
private String hostIp;

@Column(name = "disk_offering_id")
private long diskOfferingId;
Expand Down Expand Up @@ -425,11 +425,11 @@ public void setPath(String path) {
}

public String getHostIp() {
return hostip;
return hostIp;
}

public void setHostIp(String hostip) {
this.hostip = hostip;
this.hostIp = hostip;
}

public void setPodId(Long podId) {
Expand Down Expand Up @@ -683,14 +683,6 @@ public void setCreated(Date created) {
this.created = created;
}

public String getHostip() {
return hostip;
}

public void setHostip(String hostip) {
this.hostip = hostip;
}

public void setUpdatedCount(long updatedCount) {
this.updatedCount = updatedCount;
}
Expand Down

0 comments on commit 2a376f3

Please sign in to comment.