replace 'for (;;)' with 'while (true)'

This commit is contained in:
Stepan Koltsov
2012-05-11 16:26:26 +04:00
parent 39ec3f7c14
commit aa4252462f
5 changed files with 7 additions and 7 deletions
@@ -181,7 +181,7 @@ public class JetSignatureReader {
start = pos;
visited = false;
inner = false;
for (;;) {
while (true) {
switch (c = signature.charAt(pos++)) {
case '.':
case ';':
@@ -212,7 +212,7 @@ public class JetSignatureReader {
v.visitClassType(name, nullable, forceReal);
}
visited = true;
top: for (;;) {
top: while (true) {
switch (c = signature.charAt(pos)) {
case '>':
break top;