mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-02-12 16:06:23 +02:00
Исправление NPE при переименовании объекта
This commit is contained in:
parent
42d7909b73
commit
675c555299
@ -223,7 +223,7 @@ public class MdStandardAttributeSynonymEmpty
|
||||
OnModelFeatureChangeContextCollector collector = (IBmObject bmObject, EStructuralFeature feature,
|
||||
BmSubEvent bmEvent, CheckContextCollectingSession contextSession) -> {
|
||||
|
||||
if (bmObject instanceof Catalog && FEATURES.contains(feature))
|
||||
if (bmObject instanceof Catalog && feature != null && FEATURES.contains(feature))
|
||||
{
|
||||
contextSession.addFullCheck(bmObject);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user