mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Check if expression is empty string.
This commit is contained in:
parent
8679072fc4
commit
f1fcf7e551
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ public class MIBreakInsert extends MICommand
|
||||||
if (isTemporary || isHardware) {
|
if (isTemporary || isHardware) {
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
if (condition != null) {
|
if (condition != null && condition.length() > 0) {
|
||||||
i += 2;
|
i += 2;
|
||||||
}
|
}
|
||||||
if (ignoreCount > 0) {
|
if (ignoreCount > 0) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue