From 52c5259451fca340bbfcb46436836c8c20ffd2cb Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Tue, 19 Sep 2023 15:58:21 +0200 Subject: [PATCH] style: Use newlines --- .../src/main/kotlin/app/revanced/lib/zip/ZipAligner.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/revanced-lib/src/main/kotlin/app/revanced/lib/zip/ZipAligner.kt b/revanced-lib/src/main/kotlin/app/revanced/lib/zip/ZipAligner.kt index 6c7aba9..a50886d 100644 --- a/revanced-lib/src/main/kotlin/app/revanced/lib/zip/ZipAligner.kt +++ b/revanced-lib/src/main/kotlin/app/revanced/lib/zip/ZipAligner.kt @@ -7,5 +7,7 @@ object ZipAligner { private const val LIBRARY_ALIGNMENT = 4096 fun getEntryAlignment(entry: ZipEntry): Int? = - if (entry.compression.toUInt() != 0u) null else if (entry.fileName.endsWith(".so")) LIBRARY_ALIGNMENT else DEFAULT_ALIGNMENT + if (entry.compression.toUInt() != 0u) null + else if (entry.fileName.endsWith(".so")) LIBRARY_ALIGNMENT + else DEFAULT_ALIGNMENT }