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/test/java/b/pkg/BParent.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/test/java/b/pkg/BParent.java')
-rw-r--r-- | src/test/java/b/pkg/BParent.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/java/b/pkg/BParent.java b/src/test/java/b/pkg/BParent.java deleted file mode 100644 index d4b20fa..0000000 --- a/src/test/java/b/pkg/BParent.java +++ /dev/null @@ -1,7 +0,0 @@ -package b.pkg; - -public class BParent { - public BParent bParentMethod() { - return this; - } -} |