diff options
author | Jonas Herzig <jonas@spark-squared.com> | 2021-11-12 11:58:05 +0100 |
---|---|---|
committer | Jonas Herzig <jonas@spark-squared.com> | 2021-11-12 15:23:25 +0100 |
commit | b30404f156adb6e01bfe4edc50b4de4245ba4509 (patch) | |
tree | 7f563929717f12e855034f2eab6c9fb1f95a873e /src/testA/java/a/pkg/AParent.java | |
parent | 5723e6481d2f4e07b6820201e74924643b5687bc (diff) | |
download | Remap-b30404f156adb6e01bfe4edc50b4de4245ba4509.tar.gz Remap-b30404f156adb6e01bfe4edc50b4de4245ba4509.tar.bz2 Remap-b30404f156adb6e01bfe4edc50b4de4245ba4509.zip |
Separate B from A test files
So we are closer to a realistic setup and can tell when we accidentally look up
a class in the wrong project.
Also allows us to have changes in a class but not to the class or its
package (i.e. same file).
Diffstat (limited to 'src/testA/java/a/pkg/AParent.java')
-rw-r--r-- | src/testA/java/a/pkg/AParent.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/testA/java/a/pkg/AParent.java b/src/testA/java/a/pkg/AParent.java new file mode 100644 index 0000000..ac0ea7c --- /dev/null +++ b/src/testA/java/a/pkg/AParent.java @@ -0,0 +1,7 @@ +package a.pkg; + +public class AParent { + public AParent aParentMethod() { + return this; + } +} |