-
Notifications
You must be signed in to change notification settings - Fork 390
[AMORO-3853] Support Java 17 build for Amoro #4244
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
Changes from 9 commits
eeb5167
e1ed50f
6a341ae
f283bf5
ca2c20b
bc641c1
43e1f68
991383f
caf3de2
68f833f
5ccd928
595d21c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,7 +56,6 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl | |
| authenticatedFileIO.doAs( | ||
| () -> { | ||
| try { | ||
| method.setAccessible(true); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need to change this,
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
In practice, the invocation path goes through public interfaces such as Keeping |
||
| return method.invoke(obj, args); | ||
| } catch (Throwable e) { | ||
| throw new RuntimeException(e); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.