Skip to content

Commit

Permalink
Remove old Alpha extension installation check (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
sciencewhiz authored Sep 13, 2024
1 parent c6d0f77 commit 534363b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 54 deletions.
21 changes: 0 additions & 21 deletions vscode-wpilib/resources/webviews/alphaerror.html

This file was deleted.

8 changes: 0 additions & 8 deletions vscode-wpilib/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import { ToolAPI } from './toolapi';
import { existsAsync, mkdirpAsync, setExtensionContext, setJavaHome } from './utilities';
import { fireVendorDepsChanged, VendorLibraries } from './vendorlibraries';
import { createVsCommands } from './vscommands';
import { AlphaError } from './webviews/alphaerror';
import { Gradle2020Import } from './webviews/gradle2020import';
import { Help } from './webviews/help';
import { ProjectCreator } from './webviews/projectcreator';
Expand Down Expand Up @@ -325,13 +324,6 @@ export async function activate(context: vscode.ExtensionContext) {
// Resources folder is used for gradle template along with HTML files
const extensionResourceLocation = path.join(context.extensionPath, 'resources');

if (vscode.extensions.getExtension('wpifirst.vscode-wpilib') !== undefined) {
const alphaError = await AlphaError.Create(extensionResourceLocation);
alphaError.displayPage();
context.subscriptions.push(alphaError);
return;
}

// The external API can be used by other extensions that want to use our
// functionality. Its definition is provided in shared/externalapi.ts.
// That file can be copied to another project.
Expand Down
25 changes: 0 additions & 25 deletions vscode-wpilib/src/webviews/alphaerror.ts

This file was deleted.

0 comments on commit 534363b

Please sign in to comment.