-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Perform minor code clean-up #2544
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 all commits
fcb952e
76c83bb
48e664c
79d04c8
f906b3a
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 |
|---|---|---|
|
|
@@ -117,6 +117,11 @@ public FilterResult check(Class<?> rawClass) { | |
| ? FilterResult.BLOCK_INACCESSIBLE | ||
| : FilterResult.INDECISIVE; | ||
| } | ||
|
|
||
| @Override | ||
|
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. Can you mention these in the PR description?
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. Have included it now; sorry that I added this in a follow-up commit and not in the original changes of this PR. I just remembered that this change was something I wanted to do for quite some time because the default |
||
| public String toString() { | ||
| return "ReflectionAccessFilter#BLOCK_INACCESSIBLE_JAVA"; | ||
| } | ||
| }; | ||
|
|
||
| /** | ||
|
|
@@ -143,6 +148,11 @@ public FilterResult check(Class<?> rawClass) { | |
| ? FilterResult.BLOCK_ALL | ||
| : FilterResult.INDECISIVE; | ||
| } | ||
|
|
||
| @Override | ||
| public String toString() { | ||
| return "ReflectionAccessFilter#BLOCK_ALL_JAVA"; | ||
| } | ||
| }; | ||
|
|
||
| /** | ||
|
|
@@ -169,6 +179,11 @@ public FilterResult check(Class<?> rawClass) { | |
| ? FilterResult.BLOCK_ALL | ||
| : FilterResult.INDECISIVE; | ||
| } | ||
|
|
||
| @Override | ||
| public String toString() { | ||
| return "ReflectionAccessFilter#BLOCK_ALL_ANDROID"; | ||
| } | ||
| }; | ||
|
|
||
| /** | ||
|
|
@@ -196,6 +211,11 @@ public FilterResult check(Class<?> rawClass) { | |
| ? FilterResult.BLOCK_ALL | ||
| : FilterResult.INDECISIVE; | ||
| } | ||
|
|
||
| @Override | ||
| public String toString() { | ||
| return "ReflectionAccessFilter#BLOCK_ALL_PLATFORM"; | ||
| } | ||
| }; | ||
|
|
||
| /** | ||
|
|
||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.