Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8767 update payload attributes #8824

Merged
merged 21 commits into from
Nov 15, 2024
Merged
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
fix other tests
tbenr committed Nov 14, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 7cf8a81ea049f2ad5a56b7af0da083fa8b18ff54

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@ private static List<Method> listGetters(final Class<?> clazz) {
.filter(m -> Modifier.isPublic(m.getModifiers()))
.filter(m -> m.getParameterTypes().length == 0)
.filter(m -> m.getName().startsWith("get"))
.filter(m -> !m.getName().endsWith("InEffect"))
.collect(Collectors.toList());
}
}