From 42b366ed0fcbe6f00dc5f93d33e57a6555d5b90e Mon Sep 17 00:00:00 2001 From: qaiu Date: Tue, 27 Jan 2026 07:53:20 +0800 Subject: [PATCH] =?UTF-8?q?Clean=20up=20launch=20configurations=20in=20lau?= =?UTF-8?q?nch.json=EF=BC=8Crun=20AppMain?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed unused Java launch configurations from launch.json. --- .vscode/launch.json | 54 +-------------------------------------------- 1 file changed, 1 insertion(+), 53 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index a23e40c..de64a47 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,4 @@ { - // 使用 IntelliSense 了解相关属性。 - // 悬停以查看现有属性的描述。 - // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { @@ -10,61 +7,12 @@ "request": "launch", "mainClass": "${file}" }, - { - "type": "java", - "name": "StringCase", - "request": "launch", - "mainClass": "cn.qaiu.vx.core.util.StringCase", - "projectName": "core" - }, - { - "type": "java", - "name": "FCURLParser", - "request": "launch", - "mainClass": "cn.qaiu.parser.FCURLParser", - "projectName": "parser" - }, - { - "type": "java", - "name": "QkTool", - "request": "launch", - "mainClass": "cn.qaiu.parser.impl.QkTool", - "projectName": "parser" - }, - { - "type": "java", - "name": "WebClientExample", - "request": "launch", - "mainClass": "qaiu.web.test.WebClientExample", - "projectName": "parser" - }, { "type": "java", "name": "AppMain", "request": "launch", "mainClass": "cn.qaiu.lz.AppMain", "projectName": "web-service" - }, - { - "type": "java", - "name": "TestJs", - "request": "launch", - "mainClass": "cn.qaiu.web.test.TestJs", - "projectName": "web-service" - }, - { - "type": "java", - "name": "TestOS", - "request": "launch", - "mainClass": "cn.qaiu.web.test.TestOS", - "projectName": "web-service" - }, - { - "type": "java", - "name": "WebProxyExamples", - "request": "launch", - "mainClass": "cn.qaiu.web.test.WebProxyExamples", - "projectName": "web-service" } ] -} \ No newline at end of file +}