Skip to content

Commit

Permalink
Simplify lambda expression and method reference syntax
Browse files Browse the repository at this point in the history
Applies the cleanup action to simplify lambda expression and method
reference syntax in all projects to conform to defined save actions.
  • Loading branch information
HeikoKlare authored and akurtakov committed Apr 22, 2024
1 parent 5647dde commit a59ae09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ public PDAContentAssistant() {
}

private IInformationControlCreator getInformationControlCreator() {
return parent -> new DefaultInformationControl(parent);
return DefaultInformationControl::new;
}
}

0 comments on commit a59ae09

Please sign in to comment.