From b40eedfb3b279d2c8d62457c8d50c95b0e881386 Mon Sep 17 00:00:00 2001 From: Graham Date: Sat, 2 May 2020 11:09:34 +0100 Subject: [PATCH] Use block comment for multi-line comment in Deobfuscator Signed-off-by: Graham --- deob/src/main/java/dev/openrs2/deob/Deobfuscator.kt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/deob/src/main/java/dev/openrs2/deob/Deobfuscator.kt b/deob/src/main/java/dev/openrs2/deob/Deobfuscator.kt index 6146bf8a..5cfe4a8b 100644 --- a/deob/src/main/java/dev/openrs2/deob/Deobfuscator.kt +++ b/deob/src/main/java/dev/openrs2/deob/Deobfuscator.kt @@ -25,10 +25,12 @@ class Deobfuscator @Inject constructor( val client = Library.readJar(input.resolve("runescape.jar")) val glClient = Library.readPack(input.resolve("runescape_gl.pack200")) - // TODO(gpe): it'd be nice to have separate signlink.jar and - // signlink-unsigned.jar files so we don't (effectively) deobfuscate - // runescape.jar twice with different sets of names, but thinking about - // how this would work is tricky (as the naming must match) + /* + * TODO(gpe): it'd be nice to have separate signlink.jar and + * signlink-unsigned.jar files so we don't (effectively) deobfuscate + * runescape.jar twice with different sets of names, but thinking about + * how this would work is tricky (as the naming must match) + */ val unsignedClient = Library(client) // overwrite client's classes with signed classes from the loader