From f4c86df102889429d125c9c62a96a702aad562d4 Mon Sep 17 00:00:00 2001 From: Jonas Herzig Date: Thu, 11 Nov 2021 22:43:47 +0100 Subject: Remove obsolete comment --- src/main/kotlin/com/replaymod/gradle/remap/PsiMapper.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/replaymod/gradle/remap/PsiMapper.kt b/src/main/kotlin/com/replaymod/gradle/remap/PsiMapper.kt index edb867c..bf5ddda 100644 --- a/src/main/kotlin/com/replaymod/gradle/remap/PsiMapper.kt +++ b/src/main/kotlin/com/replaymod/gradle/remap/PsiMapper.kt @@ -146,7 +146,7 @@ internal class PsiMapper( if (maybeMapped == null) { // Can happen if a method is a synthetic property in the current mapping (e.g. `isNonBoss`) but not // in the target mapping (e.g. `canUsePortal()`) - // TODO probably also want to convert in the opposite direction, though that's a lot harder + // This is the reverse to the operation in [map(PsiElement, PsiMethod)]. replaceIdentifier(expr, "$mappedGetter()") } else { val mapped = maybeMapped.identifier -- cgit