forked from j62/ctbrec
Rename local variable
This commit is contained in:
parent
dafde88721
commit
8791b5b1f8
|
@ -12,8 +12,8 @@ public class GigabytesConverter implements ValueConverter {
|
|||
|
||||
@Override
|
||||
public Object convertFrom(Object b) {
|
||||
long spaceLeftInGiB = (long) b;
|
||||
return spaceLeftInGiB * ONE_GIB_IN_BYTES;
|
||||
long gibiBytes = (long) b;
|
||||
return gibiBytes * ONE_GIB_IN_BYTES;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue