jakartaee / faces

Jakarta Faces
Other
103 stars 55 forks source link

Exclude generated methods from lambdas in the interface #1888

Closed arjantijms closed 7 months ago

arjantijms commented 7 months ago

Using:

if (!isExcluded(name, exMethods) && !name.startsWith("lambda$"))

Note that unfortunately "lambda$" is not standard, and if this issue persists we may have to alter our strategy here.

BalusC commented 7 months ago

I wish the code reformatting was done in a separate PR without any logic changes. This is hard to review.

arjantijms commented 7 months ago

I wish the code reformatting was done in a separate PR without any logic changes. This is hard to review.

Format on save was activated, ugh...

The only change was

if (!isExcluded(name, exMethods) && !name.startsWith("lambda$"))