1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-06-05 02:27:21 +02:00

Merge pull request #1441 from 1C-Company/fix-dublicates-return-type

Исправление дублей маркеров
This commit is contained in:
Artem Iliukhin 2024-05-21 21:40:07 +03:00 committed by GitHub
commit 2afdf4580d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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))
{