diff --git a/bundles/com.e1c.v8codestyle.bsl/src/com/e1c/v8codestyle/bsl/strict/check/FunctionCtorReturnSectionCheck.java b/bundles/com.e1c.v8codestyle.bsl/src/com/e1c/v8codestyle/bsl/strict/check/FunctionCtorReturnSectionCheck.java index 7e144529..ab739f55 100644 --- a/bundles/com.e1c.v8codestyle.bsl/src/com/e1c/v8codestyle/bsl/strict/check/FunctionCtorReturnSectionCheck.java +++ b/bundles/com.e1c.v8codestyle.bsl/src/com/e1c/v8codestyle/bsl/strict/check/FunctionCtorReturnSectionCheck.java @@ -215,6 +215,10 @@ protected void checkDocumentationCommentObject(IDescriptionPart object, BslDocum for (TypeItem returnType : returnTypes) { + if (returnType.eIsProxy()) + { + continue; + } String returnTypeName = McoreUtil.getTypeName(returnType); if (returnTypeName != null && computedReturnTypeNames.contains(returnTypeName)) {