3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-12-24 18:10:08 +01:00

IntelliJ demanded attention.

Dieser Commit ist enthalten in:
TomyLobo 2013-09-21 19:06:47 +02:00
Ursprung 57bb5470eb
Commit eba1114b39
4 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -57,6 +57,7 @@ public class For extends Node {
ret = body.getValue();
} catch (BreakException e) {
if (e.doContinue) {
//noinspection UnnecessaryContinue
continue;
} else {
break;

Datei anzeigen

@ -61,6 +61,7 @@ public class SimpleFor extends Node {
ret = body.getValue();
} catch (BreakException e) {
if (e.doContinue) {
//noinspection UnnecessaryContinue
continue;
} else {
break;

Datei anzeigen

@ -157,9 +157,7 @@ public class Switch extends Node implements RValue {
final RValue invokable = defaultCase.optimize();
if (invokable instanceof Sequence) {
for (RValue subInvokable : ((Sequence) invokable).sequence) {
newSequence.add(subInvokable);
}
Collections.addAll(newSequence, ((Sequence) invokable).sequence);
} else {
newSequence.add(invokable);
}

Datei anzeigen

@ -73,6 +73,7 @@ public class While extends Node {
ret = body.getValue();
} catch (BreakException e) {
if (e.doContinue) {
//noinspection UnnecessaryContinue
continue;
} else {
break;