Represent sizes as longs in Partition
This commit is contained in:
parent
22bb94fc1c
commit
2f77f006c8
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ import eu.depau.etchdroid.enums.PartitionType
|
||||||
data class Partition(
|
data class Partition(
|
||||||
val number: Int?,
|
val number: Int?,
|
||||||
val offset: Int?,
|
val offset: Int?,
|
||||||
val size: Int?,
|
val size: Long?,
|
||||||
val partType: PartitionType?,
|
val partType: PartitionType?,
|
||||||
val partLabel: String?,
|
val partLabel: String?,
|
||||||
val fsType: FilesystemType?,
|
val fsType: FilesystemType?,
|
||||||
|
|
|
@ -6,7 +6,7 @@ import eu.depau.etchdroid.enums.PartitionType
|
||||||
class PartitionBuilder {
|
class PartitionBuilder {
|
||||||
var number: Int? = null
|
var number: Int? = null
|
||||||
var offset: Int? = null
|
var offset: Int? = null
|
||||||
var size: Int? = null
|
var size: Long? = null
|
||||||
var partType: PartitionType? = null
|
var partType: PartitionType? = null
|
||||||
var partLabel: String? = null
|
var partLabel: String? = null
|
||||||
var fsType: FilesystemType? = null
|
var fsType: FilesystemType? = null
|
||||||
|
|
Loading…
Reference in a new issue