diff options
author | Jonas Herzig <jonas@spark-squared.com> | 2021-11-10 19:29:29 +0100 |
---|---|---|
committer | Jonas Herzig <jonas@spark-squared.com> | 2021-11-10 20:32:40 +0100 |
commit | 971ee3e3186f1515e382985ab23a8d32899c5a07 (patch) | |
tree | c2810cd7d53b4c774f737a0747b2d11b2cb371cf /src/test/java/a/pkg | |
parent | 6883c516e73f55062f27a5f98e306149896c4907 (diff) | |
download | Remap-971ee3e3186f1515e382985ab23a8d32899c5a07.tar.gz Remap-971ee3e3186f1515e382985ab23a8d32899c5a07.tar.bz2 Remap-971ee3e3186f1515e382985ab23a8d32899c5a07.zip |
Remap mixin injector target arguments even when method is not mapped
E.g. there are no mapping entries for constructors cause their name is always
`<init>` but we nevertheless want to remap their argument types.
We cannot determine whether the name is ambiguous in the mapped
environment (because that check is based on the mappings), so we always keep the
arguments when it previously had ones.
Diffstat (limited to 'src/test/java/a/pkg')
-rw-r--r-- | src/test/java/a/pkg/A.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/java/a/pkg/A.java b/src/test/java/a/pkg/A.java index d91a6e5..3143407 100644 --- a/src/test/java/a/pkg/A.java +++ b/src/test/java/a/pkg/A.java @@ -3,6 +3,12 @@ package a.pkg; public class A extends AParent implements AInterface { private int aField; + public A() { + } + + public A(A arg) { + } + public void aMethod() { } @@ -21,6 +27,12 @@ public class A extends AParent implements AInterface { public void commonOverloaded(A arg) { } + public void unmappedOverloaded(Object arg) { + } + + public void unmappedOverloaded(A arg) { + } + @Override public void aInterfaceMethod() { } |