From 06e97c46ef3078530167fb1ac612cceaab652e75 Mon Sep 17 00:00:00 2001 From: "Ricardo M." Date: Fri, 20 Sep 2024 15:30:18 +0200 Subject: [PATCH] kie-tools-issues#2584: Make `private` members to be `protected` for `DefaultVsCodeKieEditorChannelApiImpl` (#2606) --- .../src/DefaultVsCodeKieEditorChannelApiImpl.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/vscode-extension/src/DefaultVsCodeKieEditorChannelApiImpl.ts b/packages/vscode-extension/src/DefaultVsCodeKieEditorChannelApiImpl.ts index 825c5e832f2..b1a3112ace7 100644 --- a/packages/vscode-extension/src/DefaultVsCodeKieEditorChannelApiImpl.ts +++ b/packages/vscode-extension/src/DefaultVsCodeKieEditorChannelApiImpl.ts @@ -44,14 +44,14 @@ import { getNormalizedPosixPathRelativeToWorkspaceRoot, getWorkspaceRoot } from export class DefaultVsCodeKieEditorChannelApiImpl implements KogitoEditorChannelApi, JavaCodeCompletionChannelApi { constructor( - private readonly editor: VsCodeKieEditorController, - private readonly resourceContentService: ResourceContentService, - private readonly vscodeWorkspace: VsCodeWorkspaceChannelApiImpl, - private readonly backendProxy: BackendProxy, - private readonly vscodeNotifications: VsCodeNotificationsChannelApiImpl, - private readonly javaCodeCompletionApi: JavaCodeCompletionApi, - private readonly viewType: string, - private readonly i18n: I18n + protected readonly editor: VsCodeKieEditorController, + protected readonly resourceContentService: ResourceContentService, + protected readonly vscodeWorkspace: VsCodeWorkspaceChannelApiImpl, + protected readonly backendProxy: BackendProxy, + protected readonly vscodeNotifications: VsCodeNotificationsChannelApiImpl, + protected readonly javaCodeCompletionApi: JavaCodeCompletionApi, + protected readonly viewType: string, + protected readonly i18n: I18n ) {} public async kogitoWorkspace_newEdit(workspaceEdit: WorkspaceEdit) {