-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
organise imports according to Google style
- Loading branch information
1 parent
7a1873f
commit bcc99be
Showing
5 changed files
with
89 additions
and
11 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
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
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
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
14 changes: 11 additions & 3 deletions
14
packages/prettier-plugin-java/test/unit-test/package_and_imports/_output.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 |
---|---|---|
@@ -1,8 +1,16 @@ | ||
package my.own.pkg; | ||
|
||
import something.Different; | ||
import java.utils.*; | ||
import abc.def.Something; | ||
import static abc.def; | ||
import static abc.def.Another; | ||
import static abc.def.Something; | ||
import static java.utils.*; | ||
import static something.Different; | ||
|
||
import abc.def; | ||
import abc.def.Another; | ||
import abc.def.Something; | ||
import java.utils.*; | ||
import one.last; | ||
import something.Different; | ||
|
||
public class PackageAndImports {} |