mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
unnecessary boxed boolean
This commit is contained in:
parent
e078644caf
commit
c965a60963
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public abstract class PlainTextDeckImporter extends DeckImporter {
|
||||||
sbMessage.setLength(0);
|
sbMessage.setLength(0);
|
||||||
try {
|
try {
|
||||||
try (Scanner scanner = new Scanner(f)) {
|
try (Scanner scanner = new Scanner(f)) {
|
||||||
Boolean canFix = true;
|
boolean canFix = true;
|
||||||
while (scanner.hasNextLine()) {
|
while (scanner.hasNextLine()) {
|
||||||
String line = scanner.nextLine().trim();
|
String line = scanner.nextLine().trim();
|
||||||
FixedInfo fixedInfo = new FixedInfo(line);
|
FixedInfo fixedInfo = new FixedInfo(line);
|
||||||
|
|
Loading…
Reference in a new issue