-
Notifications
You must be signed in to change notification settings - Fork 458
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
9 changed files
with
104 additions
and
3 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
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
11 changes: 11 additions & 0 deletions
11
...lib/src/main/resources/java/googlejavaformat/JavaWithReorderImportsDisabledFormatted.test
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,11 @@ | ||
import java.nio.file.Paths; | ||
import my.UsedB; | ||
import org.xml.sax.InputSource; | ||
|
||
public class Java { | ||
public static void main(String[] args) { | ||
UsedB b = new UsedB(); | ||
InputSource inputSource = new InputSource(); | ||
Paths.get("dir"); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
testlib/src/main/resources/java/googlejavaformat/JavaWithReorderImportsEnabledFormatted.test
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,13 @@ | ||
import my.UsedB; | ||
|
||
import org.xml.sax.InputSource; | ||
|
||
import java.nio.file.Paths; | ||
|
||
public class Java { | ||
public static void main(String[] args) { | ||
UsedB b = new UsedB(); | ||
InputSource inputSource = new InputSource(); | ||
Paths.get("dir"); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
testlib/src/main/resources/java/googlejavaformat/JavaWithReorderImportsUnformatted.test
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,11 @@ | ||
import my.UsedB; | ||
import java.nio.file.Paths; | ||
import org.xml.sax.InputSource; | ||
|
||
public class Java { | ||
public static void main(String[] args) { | ||
UsedB b = new UsedB(); | ||
InputSource inputSource = new InputSource(); | ||
Paths.get("dir"); | ||
} | ||
} |
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