Skip to content

Commit 26b300c

Browse files
Gupta, SuryaGupta, Surya
authored andcommitted
CSTACKEX-30 Fixed check style issues
1 parent 3a861ce commit 26b300c

File tree

2 files changed

+2
-25
lines changed

2 files changed

+2
-25
lines changed

plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/model/LunMap.java

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
import com.fasterxml.jackson.annotation.JsonProperty;
2525
import com.google.gson.annotations.SerializedName;
2626

27-
import java.util.Objects;
28-
2927
@JsonInclude(JsonInclude.Include.NON_NULL)
3028
public class LunMap {
3129
@JsonProperty("igroup")
@@ -90,27 +88,6 @@ public void setSvm (Svm svm) {
9088
this.svm = svm;
9189
}
9290

93-
94-
@Override
95-
public boolean equals (Object o) {
96-
if (this == o) {
97-
return true;
98-
}
99-
if (o == null || getClass() != o.getClass()) {
100-
return false;
101-
}
102-
LunMap lunMap = (LunMap) o;
103-
return Objects.equals(this.igroup, lunMap.igroup) &&
104-
Objects.equals(this.logicalUnitNumber, lunMap.logicalUnitNumber) &&
105-
Objects.equals(this.lun, lunMap.lun) &&
106-
Objects.equals(this.svm, lunMap.svm);
107-
}
108-
109-
@Override
110-
public int hashCode () {
111-
return Objects.hash(igroup, logicalUnitNumber, lun, svm);
112-
}
113-
11491
@Override
11592
public String toString () {
11693
StringBuilder sb = new StringBuilder();

plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/model/LunSpace.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ public void setSize(Long size) {
6969
public Long getUsed() {
7070
return used;
7171
}
72-
72+
7373
public Long getPhysicalUsed() {
74-
return physicalUsed;
74+
return physicalUsed;
7575
}
7676

7777
@Override

0 commit comments

Comments
 (0)