Skip to content
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

Remove own eclipse delete/copy paste modules #369

Merged
merged 1 commit into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 0 additions & 71 deletions integration/eclipse/src/copy-paste/copy-paste.ts

This file was deleted.

12 changes: 0 additions & 12 deletions integration/eclipse/src/copy-paste/di.config.ts

This file was deleted.

9 changes: 3 additions & 6 deletions integration/eclipse/src/di.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,17 @@ import ivyGoToSourceModule from './edit-source/di.config';
import ivyEditorActionModule from './editor-action/di.config';
import ivyOpenDataClassModule from './open-data-class/di.config';
import ivyToolBarModule from './tool-bar/di.config';
import ivyEclipseCopyPasteModule from './copy-paste/di.config';
import ivyEclipseDeleteModule from './invoke-delete/di.config';
import { IvyEclipseGLSPDiagramServer } from './ivy-eclipse-glsp-diagram-server';
import { eclipseCopyPasteModule, eclipseDeleteModule } from '@eclipse-glsp/ide';

export default function createContainer(widgetId: string): Container {
const container = createIvyDiagramContainer(widgetId);
container.bind(TYPES.ModelSource).to(IvyEclipseGLSPDiagramServer).inSingletonScope();
container.rebind(TYPES.ILogger).to(ConsoleLogger).inSingletonScope();
container.rebind(TYPES.LogLevel).toConstantValue(LogLevel.warn);

// Revert after Issue 690 is merged
container.load(ivyEclipseCopyPasteModule);
// Revert after Issue 690 is merged
container.load(ivyEclipseDeleteModule);
container.load(eclipseCopyPasteModule);
container.load(eclipseDeleteModule);
container.load(ivyOpenInscriptionModule);
container.load(ivyOpenDecoratorBrowserModule);
container.load(ivyOpenQuickOutlineModule);
Expand Down
10 changes: 0 additions & 10 deletions integration/eclipse/src/invoke-delete/di.config.ts

This file was deleted.

27 changes: 0 additions & 27 deletions integration/eclipse/src/invoke-delete/invoke-delete.ts

This file was deleted.