@@ -85,7 +85,6 @@ import { TabBarDecoratorService as TheiaTabBarDecoratorService } from '@theia/co
85
85
import { TabBarDecoratorService } from './theia/core/tab-bar-decorator' ;
86
86
import { ProblemManager as TheiaProblemManager } from '@theia/markers/lib/browser' ;
87
87
import { ProblemManager } from './theia/markers/problem-manager' ;
88
- import { BoardsAutoInstaller } from './boards/boards-auto-installer' ;
89
88
import { ShellLayoutRestorer } from './theia/core/shell-layout-restorer' ;
90
89
import {
91
90
ArduinoComponentContextMenuRenderer ,
@@ -222,9 +221,6 @@ import { NotificationsRenderer as TheiaNotificationsRenderer } from '@theia/mess
222
221
import { NotificationsRenderer } from './theia/messages/notifications-renderer' ;
223
222
import { SketchbookWidgetContribution } from './widgets/sketchbook/sketchbook-widget-contribution' ;
224
223
import { LocalCacheFsProvider } from './local-cache/local-cache-fs-provider' ;
225
- import { CloudSketchbookWidget } from './widgets/cloud-sketchbook/cloud-sketchbook-widget' ;
226
- import { CloudSketchbookTreeWidget } from './widgets/cloud-sketchbook/cloud-sketchbook-tree-widget' ;
227
- import { createCloudSketchbookTreeWidget } from './widgets/cloud-sketchbook/cloud-sketchbook-tree-container' ;
228
224
import { CreateApi } from './create/create-api' ;
229
225
import { ShareSketchDialog } from './dialogs/cloud-share-sketch-dialog' ;
230
226
import { AuthenticationClientService } from './auth/authentication-client-service' ;
@@ -497,8 +493,8 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
497
493
. whenTargetNamed ( 'store' ) ;
498
494
499
495
// Boards auto-installer
500
- bind ( BoardsAutoInstaller ) . toSelf ( ) . inSingletonScope ( ) ;
501
- bind ( FrontendApplicationContribution ) . toService ( BoardsAutoInstaller ) ;
496
+ // bind(BoardsAutoInstaller).toSelf().inSingletonScope();
497
+ // bind(FrontendApplicationContribution).toService(BoardsAutoInstaller);
502
498
503
499
// Boards list widget
504
500
bind ( BoardsListWidget ) . toSelf ( ) ;
@@ -970,11 +966,11 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
970
966
createWidget : ( ) => ctx . container . get ( SketchbookCompositeWidget ) ,
971
967
} ) ) ;
972
968
973
- bind ( CloudSketchbookWidget ) . toSelf ( ) ;
974
- rebind ( SketchbookWidget ) . toService ( CloudSketchbookWidget ) ;
975
- bind ( CloudSketchbookTreeWidget ) . toDynamicValue ( ( { container } ) =>
976
- createCloudSketchbookTreeWidget ( container )
977
- ) ;
969
+ // bind(CloudSketchbookWidget).toSelf();
970
+ // rebind(SketchbookWidget).toService(CloudSketchbookWidget);
971
+ // bind(CloudSketchbookTreeWidget).toDynamicValue(({ container }) =>
972
+ // createCloudSketchbookTreeWidget(container)
973
+ // );
978
974
bind ( CreateApi ) . toSelf ( ) . inSingletonScope ( ) ;
979
975
bind ( SketchCache ) . toSelf ( ) . inSingletonScope ( ) ;
980
976
bind ( CreateFeatures ) . toSelf ( ) . inSingletonScope ( ) ;
0 commit comments