From 80ac392cf761e5e3f5c5c0c49de84b6dc3b5c367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Tue, 16 Jul 2024 22:55:32 +0200 Subject: [PATCH] Fix indentation --- lib/android.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/android.js b/lib/android.js index cf739d57..d696b89b 100644 --- a/lib/android.js +++ b/lib/android.js @@ -1889,8 +1889,8 @@ function ensureArtKnowsHowToHandleReplacementMethods (vm) { const apiLevel = getAndroidApiLevel(); const mayUseCollector = (apiLevel > 28) - ? new NativeFunction(Module.getExportByName('libart.so', '_ZNK3art2gc4Heap15MayUseCollectorENS0_13CollectorTypeE'), 'bool', ['pointer', 'int']) - : () => false; + ? new NativeFunction(Module.getExportByName('libart.so', '_ZNK3art2gc4Heap15MayUseCollectorENS0_13CollectorTypeE'), 'bool', ['pointer', 'int']) + : () => false; const kCollectorTypeCMC = 3; if (mayUseCollector(getApi().artHeap, kCollectorTypeCMC)) {