Skip to content

Commit

Permalink
исправление ошибки приведения типа
Browse files Browse the repository at this point in the history
  • Loading branch information
theshadowco committed Jan 11, 2024
1 parent 086aad3 commit 4313b07
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 4313b07

Please sign in to comment.