This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use new IntelliJ import order (#143)
- Loading branch information
Ondra Pelech
authored
Dec 28, 2020
1 parent
b263031
commit 869e427
Showing
8 changed files
with
19 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package fix | ||
|
||
import scala.util.control | ||
import scala.util.control.NonFatal | ||
|
||
import _root_.scala.collection.mutable.ArrayBuffer | ||
import _root_.scala.util | ||
|
||
import scala.util.control | ||
import scala.util.control.NonFatal | ||
|
||
object ExpandRelativeRootPackage |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
package fix | ||
|
||
import fix.QuotedIdent.`a.b`.`{ d }`.e | ||
import fix.QuotedIdent._ | ||
import fix.QuotedIdent.`a.b`.{c => _, _} | ||
|
||
import scala.concurrent.ExecutionContext.Implicits._ | ||
import scala.concurrent.duration | ||
import scala.concurrent._ | ||
import scala.concurrent.{Promise, Future} | ||
|
||
import fix.QuotedIdent.`a.b`.`{ d }`.e | ||
import fix.QuotedIdent._ | ||
import fix.QuotedIdent.`a.b`.{c => _, _} | ||
|
||
object ImportsOrderKeep |
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,12 +1,12 @@ | ||
package fix | ||
|
||
import fix.QuotedIdent._ | ||
import fix.QuotedIdent.`a.b`.{c => _, _} | ||
import fix.QuotedIdent.`a.b`.`{ d }`.e | ||
|
||
import scala.concurrent._ | ||
import scala.concurrent.{Promise, Future} | ||
import scala.concurrent.ExecutionContext.Implicits._ | ||
import scala.concurrent.duration | ||
|
||
import fix.QuotedIdent._ | ||
import fix.QuotedIdent.`a.b`.{c => _, _} | ||
import fix.QuotedIdent.`a.b`.`{ d }`.e | ||
|
||
object ImportsOrderSymbolsFirst |
5 changes: 2 additions & 3 deletions
5
output/src/main/scala/fix/nested/NestedPackageWithBraces.scala
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,13 +1,12 @@ | ||
package fix { | ||
package nested { | ||
import sun.misc.BASE64Encoder | ||
|
||
import java.time.Clock | ||
import javax.annotation.Generated | ||
|
||
import scala.collection.JavaConverters._ | ||
import scala.concurrent.ExecutionContext | ||
|
||
import sun.misc.BASE64Encoder | ||
|
||
object NestedPackageWithBraces | ||
} | ||
} |
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