-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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
HADOOP-18100: Change scope of inner classes in InodeTree to make them accessible outside package #3950
Conversation
… accessible outside package
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that you are using View FS as the parent class for a non-public class, but your PR should what your goal is. Furthermore, you should make the minimum possible visibility changes because each part of the public API gets locked down and becomes impossible to change.
...mmon-project/hadoop-common/src/main/java/org/apache/hadoop/fs/viewfs/ChRootedFileSystem.java
Outdated
Show resolved
Hide resolved
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/viewfs/FsGetter.java
Outdated
Show resolved
Hide resolved
💔 -1 overall
This message was automatically generated. |
… accessible outside package Addressed review comment and removed unnecessary scope changes
@Private | ||
class FsGetter { | ||
@InterfaceAudience.LimitedPrivate({"Common"}) | ||
@InterfaceStability.Evolving /*Evolving for a release,to be changed to Stable */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, after thinking about this more, we really don't want to guarantee this interface, so it should be InterfaceStability.Unstable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed this to Unstable
💔 -1 overall
This message was automatically generated. |
💔 -1 overall
This message was automatically generated. |
… accessible outside package Fixes #3950 Signed-off-by: Owen O'Malley <[email protected]> Cherry-picked from 3684c7f by Owen O'Malley
… accessible outside package Fixes #3950 Signed-off-by: Owen O'Malley <[email protected]> Cherry-picked from 3684c7f by Owen O'Malley
… accessible outside package Fixes apache#3950 Signed-off-by: Owen O'Malley <[email protected]>
https://issues.apache.org/jira/browse/HADOOP-18100
Description of PR
How was this patch tested?
For code changes:
LICENSE
,LICENSE-binary
,NOTICE-binary
files?