1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-02-22 00:13:11 +02:00

G5V8DT-22608 Автосортировщик не сортирует дочерние подсистемы после

получения изменений из базы
This commit is contained in:
traggerW 2023-09-15 14:16:31 +03:00
parent 5cae58e6a9
commit c912aa0fff

View File

@ -227,7 +227,7 @@ public class SortServiceTest
IBmObject commonModule = transaction.getTopObjectByFqn("CommonModule.ГМодуль");
Configuration configuration =
transaction.toTransactionObject(((IConfigurationAware)v8Project).getConfiguration());
configuration.getCommonModules().remove(commonModule);
configuration.getCommonModules().remove((CommonModule)commonModule);
transaction.detachTopObject(commonModule);
return null;
}
@ -459,10 +459,17 @@ public class SortServiceTest
}
/**
* @param notification
* Specifies how event must be registered.
*
* @param notification the notification containing event data, cannot be {@code null}
*/
protected abstract void registerEvent(Notification notification);
/**
* Checks if listener should count down latch.
*
* @return {@code true} if should count down latch, {@code false} otherwise
*/
protected abstract boolean isShouldNotifyAboutEvent();
}
}