Ignore actions with empty message

This commit is contained in:
Nikolay Krasko
2015-06-03 21:06:51 +03:00
parent 94db320f7a
commit 549987b27f
@@ -95,7 +95,7 @@ public class DirectiveBasedActionUtils {
@Override
public boolean apply(String input) {
for (String prefix : IRRELEVANT_ACTION_PREFIXES) {
if (input.startsWith(prefix)) {
if (input.startsWith(prefix) || input.isEmpty()) {
return false;
}
}