Skip to content

Commit

Permalink
set private to protected
Browse files Browse the repository at this point in the history
Signed-off-by: Trust <[email protected]>
  • Loading branch information
Rtulpe committed Sep 28, 2023
1 parent 9f4ec36 commit 434f9dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/langium-sprotty/src/diagram-server-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export class DefaultDiagramServerManager implements DiagramServerManager {
protected readonly diagramServerFactory: (clientId: string, options?: DiagramOptions) => DiagramServer;
protected readonly diagramServerMap: Map<string, DiagramServer> = new Map();

private changedUris: URI[] = [];
private outdatedDocuments: Map<LangiumDocument, DiagramServer> = new Map();
protected changedUris: URI[] = [];
protected outdatedDocuments: Map<LangiumDocument, DiagramServer> = new Map();

constructor(services: LangiumSprottySharedServices) {
this.connection = services.lsp.Connection;
Expand Down

0 comments on commit 434f9dc

Please sign in to comment.