Commit 84667a0a authored by Him188's avatar Him188

Use lazy

parent 0f89665e
...@@ -45,7 +45,7 @@ abstract class DeviceInfo( ...@@ -45,7 +45,7 @@ abstract class DeviceInfo(
abstract val apn: ByteArray abstract val apn: ByteArray
val guid: ByteArray get() = generateGuid(androidId, macAddress) val guid: ByteArray by lazy { generateGuid(androidId, macAddress) }
fun generateDeviceInfoData(): ByteArray { fun generateDeviceInfoData(): ByteArray {
@Serializable @Serializable
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment