-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simple moving external class test, same package, no nesting
- Loading branch information
Showing
6 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
tiny 2 0 a b | ||
c it/Exist it/Exist2 | ||
c sources/Thing sources/Thing2 |
7 changes: 7 additions & 0 deletions
7
src/test/resources/original/move_external_class_simple/A.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import it.Exist; | ||
import sources.Thing; | ||
|
||
// insert junk into this file; it should be converted almost 1 <=> 1 | ||
public class A<WE_DO_A_LITTLE_TROLLING extends Object> implements Thing { | ||
Exist lol; | ||
} |
7 changes: 7 additions & 0 deletions
7
src/test/resources/remapped/move_external_class_simple/A.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import it.Exist2; | ||
import sources.Thing2; | ||
|
||
// insert junk into this file; it should be converted almost 1 <=> 1 | ||
public class A<WE_DO_A_LITTLE_TROLLING extends Object> implements Thing2 { | ||
Exist2 lol; | ||
} |
Binary file not shown.