Skip to content

Commit 8aebe58

Browse files
committed
feat: add java command import class info
1 parent 5bb49e3 commit 8aebe58

File tree

10 files changed

+3
-666
lines changed

10 files changed

+3
-666
lines changed

package-lock.json

Lines changed: 1 addition & 173 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,6 @@
11101110
"webpack-cli": "^4.10.0"
11111111
},
11121112
"dependencies": {
1113-
"@github/copilot-language-server": "^1.316.0",
11141113
"await-lock": "^2.2.2",
11151114
"fmtr": "^1.1.4",
11161115
"fs-extra": "^10.1.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function getExpService() {
2828
}
2929

3030
export async function init(context: vscode.ExtensionContext): Promise<void> {
31-
const packageJson: {[key: string]: any} = require("../../package.json");
31+
const packageJson: {[key: string]: any} = require("../package.json");
3232
// tslint:disable: no-string-literal
3333
const extensionName = `${packageJson["publisher"]}.${packageJson["name"]}`;
3434
const extensionVersion = packageJson["version"];

src/commands.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,6 @@ export namespace Commands {
116116

117117
export const JAVA_PROJECT_GETMAINCLASSES = "java.project.getMainClasses";
118118

119-
export const JAVA_PROJECT_GETIMPORTCLASSCONTENT = "java.project.getImportClassContent";
120-
121119
export const JAVA_PROJECT_GENERATEJAR = "java.project.generateJar";
122120

123121
export const JAVA_BUILD_WORKSPACE = "java.workspace.compile";

0 commit comments

Comments
 (0)