We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613883f commit e36127aCopy full SHA for e36127a
arduino-ide-extension/src/browser/create/create-features.ts
@@ -91,15 +91,6 @@ export class CreateFeatures implements FrontendApplicationContribution {
91
return this._enabled;
92
}
93
94
- get cloudSketchStates(): {
95
- uri: URI;
96
- state: CloudSketchState | undefined;
97
- }[] {
98
- return Array.from(this._cloudSketchStates.entries()).map(
99
- ([uri, state]) => ({ uri: new URI(uri), state })
100
- );
101
- }
102
-
103
cloudSketchState(uri: URI): CloudSketchState | undefined {
104
return this._cloudSketchStates.get(uri.toString());
105
0 commit comments