Skip to content

Commit

Permalink
fix: remove unused API
Browse files Browse the repository at this point in the history
Signed-off-by: Akos Kitta <[email protected]>
  • Loading branch information
Akos Kitta committed Feb 27, 2023
1 parent 613883f commit e36127a
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions arduino-ide-extension/src/browser/create/create-features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,6 @@ export class CreateFeatures implements FrontendApplicationContribution {
return this._enabled;
}

get cloudSketchStates(): {
uri: URI;
state: CloudSketchState | undefined;
}[] {
return Array.from(this._cloudSketchStates.entries()).map(
([uri, state]) => ({ uri: new URI(uri), state })
);
}

cloudSketchState(uri: URI): CloudSketchState | undefined {
return this._cloudSketchStates.get(uri.toString());
}
Expand Down

0 comments on commit e36127a

Please sign in to comment.