1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2024-11-24 16:53:51 +02:00

Merge remote-tracking branch 'origin/master' into edt-2024-1

This commit is contained in:
Almaz Nasibullin 2024-05-30 16:00:42 +03:00
commit 698f6e3eb8

View File

@ -215,6 +215,10 @@ public class FunctionCtorReturnSectionCheck
for (TypeItem returnType : returnTypes)
{
if (returnType.eIsProxy())
{
continue;
}
String returnTypeName = McoreUtil.getTypeName(returnType);
if (returnTypeName != null && computedReturnTypeNames.contains(returnTypeName))
{