mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-23 02:10:44 +01:00
Apply automated ktlint 1.2.1 formatting.
This commit is contained in:
committed by
Clark Chen
parent
e861c022da
commit
cfb4377de3
@@ -47,11 +47,15 @@ data class JobSpec(
|
||||
if (serializedData != null) {
|
||||
if (other.serializedData == null) return false
|
||||
if (!serializedData.contentEquals(other.serializedData)) return false
|
||||
} else if (other.serializedData != null) return false
|
||||
} else if (other.serializedData != null) {
|
||||
return false
|
||||
}
|
||||
if (serializedInputData != null) {
|
||||
if (other.serializedInputData == null) return false
|
||||
if (!serializedInputData.contentEquals(other.serializedInputData)) return false
|
||||
} else if (other.serializedInputData != null) return false
|
||||
} else if (other.serializedInputData != null) {
|
||||
return false
|
||||
}
|
||||
if (isRunning != other.isRunning) return false
|
||||
if (isMemoryOnly != other.isMemoryOnly) return false
|
||||
|
||||
|
||||
Reference in New Issue
Block a user