10BC0 Add Protobuf Support by DanielLiu1123 · Pull Request #3954 · mapstruct/mapstruct · GitHub
[go: up one dir, main page]

Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes previous bug
  • Loading branch information
DanielLiu1123 committed Nov 13, 2025
commit 4fa356ec0cfe1e399eca5927c8bf2618f662a97b
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,6 @@ && isMapType( m.getReturnType() )
// map field generates deprecated 'getXxx()' and 'getMutableXxx()' methods
rules.add( new SpecialMethodRule(
method -> getMethodName( method ).startsWith( "get" )
&& !getMethodName( method ).endsWith( "Map" )
&& isMapType( method.getReturnType() ),
(method, methods) -> {
String methodName = getMethodName( method );
Expand Down
0