1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Check if expression is empty string.

This commit is contained in:
Mikhail Khodjaiants 2002-09-02 20:40:15 +00:00
parent 8679072fc4
commit f1fcf7e551

View file

@ -67,7 +67,7 @@ public class MIBreakInsert extends MICommand
if (isTemporary || isHardware) {
i++;
}
if (condition != null) {
if (condition != null && condition.length() > 0) {
i += 2;
}
if (ignoreCount > 0) {