Skip to content

Commit

Permalink
Merge pull request #1441 from 1C-Company/fix-dublicates-return-type
Browse files Browse the repository at this point in the history
Исправление дублей маркеров
  • Loading branch information
iArtemv committed May 21, 2024
2 parents 7087abc + 2b3fe9c commit 2afdf45
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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))
{
Expand Down

0 comments on commit 2afdf45

Please sign in to comment.