mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +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);
|
||||
try {
|
||||
try (Scanner scanner = new Scanner(f)) {
|
||||
Boolean canFix = true;
|
||||
boolean canFix = true;
|
||||
while (scanner.hasNextLine()) {
|
||||
String line = scanner.nextLine().trim();
|
||||
FixedInfo fixedInfo = new FixedInfo(line);
|
||||
|
|
Loading…
Reference in a new issue