forked from j62/ctbrec
1
0
Fork 0

Rename local variable

This commit is contained in:
0xb00bface 2020-12-06 15:34:12 +01:00
parent dafde88721
commit 8791b5b1f8
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}