1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-07-16 12:44:15 +02:00

#850 Проверка существования наборов параметров (#873)

This commit is contained in:
Dmitriy Marmyshev
2021-11-19 21:24:00 +03:00
committed by GitHub
parent 6e1573b788
commit 3e91cd707e

View File

@ -247,7 +247,7 @@ public class EventHandlerBooleanParamCheck
}
}
}
if (monitor.isCanceled() || event == null)
if (monitor.isCanceled() || event == null || event.getParamSet().isEmpty())
{
return null;
}