aboutsummaryrefslogtreecommitdiff
path: root/src/test/kotlin/com/replaymod/gradle/remap/util
diff options
context:
space:
mode:
authorJonas Herzig <jonas@spark-squared.com>2021-11-12 10:58:10 +0100
committerJonas Herzig <jonas@spark-squared.com>2021-11-12 15:23:25 +0100
commit5723e6481d2f4e07b6820201e74924643b5687bc (patch)
tree8e91c4b8a1e2e59cac1fad71209670309b2f5153 /src/test/kotlin/com/replaymod/gradle/remap/util
parent0e7f8ea1d9ebd42bcd88506e771a8b5a1e9ba0b9 (diff)
downloadRemap-5723e6481d2f4e07b6820201e74924643b5687bc.tar.gz
Remap-5723e6481d2f4e07b6820201e74924643b5687bc.tar.bz2
Remap-5723e6481d2f4e07b6820201e74924643b5687bc.zip
Fix synthetic property becoming shadowed by field of same name
Diffstat (limited to 'src/test/kotlin/com/replaymod/gradle/remap/util')
-rw-r--r--src/test/kotlin/com/replaymod/gradle/remap/util/TestData.kt4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/kotlin/com/replaymod/gradle/remap/util/TestData.kt b/src/test/kotlin/com/replaymod/gradle/remap/util/TestData.kt
index adb6f52..c40635c 100644
--- a/src/test/kotlin/com/replaymod/gradle/remap/util/TestData.kt
+++ b/src/test/kotlin/com/replaymod/gradle/remap/util/TestData.kt
@@ -41,6 +41,10 @@ object TestData {
findClasspathEntry("org.spongepowered.asm.mixin.Mixin"),
findClasspathEntry("a.pkg.A"),
)
+ remappedClasspath = arrayOf(
+ findClasspathEntry("org.spongepowered.asm.mixin.Mixin"),
+ findClasspathEntry("b.pkg.B"),
+ )
patternAnnotation = "remap.Pattern"
}