-
Notifications
You must be signed in to change notification settings - Fork 186
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
Make private
members to be protected
for DefaultVsCodeKieEditorChannelApiImpl
#2584
Comments
@lordrip No objections at all. Feel free to send a PR. |
If this is something you absolutely need ASAP, consider bringing this to |
Hi @tiagobento, thanks, since 10.0 is frozen, it's ok to wait for the next release, I'll prepare a PR and you decide when is a good moment to include it, we're not blocked, we have a workaround in the meantime ✌️ |
Expose constructor parameters to subclasses of the `DefaultVsCodeKieEditorChannelApiImpl` class. fix: apache#2584
Is it possible to make the private constructor arguments protected in the DefaultVsCodeKieEditorChannelApiImpl class class?
In the DefaultVsCodeKieEditorChannelApiImpl class, all of its members are private, making complicated for other classes extending it to use them.
Here's an extract of the constructor:
The goal is to access the underlying file path from the API.
For instance, doing something like the following:
The text was updated successfully, but these errors were encountered: