We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b09def4 commit bf447a0Copy full SHA for bf447a0
1 file changed
kinetic-client/src/main/java/kinetic/admin/Capacity.java
@@ -19,24 +19,24 @@
19
20
public class Capacity {
21
// total capacity of hard disk
22
- private float total;
+ private long total;
23
24
// remaining capacity of hard disk
25
- private float remaining;
+ private long remaining;
26
27
- public float getTotal() {
+ public long getTotal() {
28
return total;
29
}
30
31
- public void setTotal(float total) {
+ public void setTotal(long total) {
32
this.total = total;
33
34
35
- public float getRemaining() {
+ public long getRemaining() {
36
return remaining;
37
38
39
- public void setRemaining(float remaining) {
+ public void setRemaining(long remaining) {
40
this.remaining = remaining;
41
42
0 commit comments