do while static fixed
This commit is contained in:
parent
0eb23bef57
commit
116c17c67c
|
|
@ -52,7 +52,8 @@ public class ConsoleLogProcessor extends LogProcessor {
|
|||
//noinspection WrongConstant
|
||||
Log.println(level.getPriority(), tag, messageToLog.substring(i, end));
|
||||
i = end;
|
||||
} while (i < newline);
|
||||
}
|
||||
while (i < newline);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -225,7 +225,8 @@ public final class Lc {
|
|||
break;
|
||||
}
|
||||
}
|
||||
} while (exceptionAssignableFromIgnores && result != null && !processedExceptions.contains(result));
|
||||
}
|
||||
while (exceptionAssignableFromIgnores && result != null && !processedExceptions.contains(result));
|
||||
Lc.assertion(result != null ? result : assertion);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue