added if without block to increase test coverage of EmptyBlockCheck
This commit is contained in:
parent
f454aa6d90
commit
fc6eea95b8
|
|
@ -166,4 +166,11 @@ class InputSemantic
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
public void triggerEmptyBlockWithoutBlock()
|
||||
{
|
||||
// an if statement without a block to increase test coverage
|
||||
if (true)
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue