Skip to content

Commit

Permalink
Merge pull request #3221 from 1c-syntax/feature/fixErr
Browse files Browse the repository at this point in the history
исправление ошибки приведения типа
  • Loading branch information
theshadowco authored Jan 12, 2024
2 parents 086aad3 + 4313b07 commit 08b00ab
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ private List<String> getTabularSectionNames(SDBLParser.MdoContext mdo) {
.map(configuration::findChild)
.filter(Optional::isPresent)
.map(Optional::get)
.filter(TabularSectionOwner.class::isInstance)
.map(TabularSectionOwner.class::cast)
.flatMap(RefOveruseDiagnostic::getTabularSectionNames)
.collect(Collectors.toList());
Expand Down

0 comments on commit 08b00ab

Please sign in to comment.