From be1f293b0a4c775702c954afabe20e913a8e82d8 Mon Sep 17 00:00:00 2001 From: Graham Date: Sun, 5 Dec 2021 13:26:25 +0000 Subject: [PATCH] Use multi-line comment Signed-off-by: Graham --- cache/src/main/kotlin/org/openrs2/cache/JagArchive.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cache/src/main/kotlin/org/openrs2/cache/JagArchive.kt b/cache/src/main/kotlin/org/openrs2/cache/JagArchive.kt index 9159beef..c8c85005 100644 --- a/cache/src/main/kotlin/org/openrs2/cache/JagArchive.kt +++ b/cache/src/main/kotlin/org/openrs2/cache/JagArchive.kt @@ -249,8 +249,10 @@ public class JagArchive : Closeable { uncompress(entry, !compressedArchive, entryLen, uncompressedEntryLen).use { entryBuf -> if (!archive.existsNamed(nameHash)) { - // Store the first entry if there is a collision, - // for compatibility with the client. + /* + * Store the first entry if there is a collision, + * for compatibility with the client. + */ archive.writeNamed(nameHash, entryBuf) } }