@@ -15,7 +15,6 @@ import { showClasspathConfigurationPage } from "../classpath/classpathConfigurat
1515import { markdownPreviewProvider } from "../classpath/markdownPreviewProvider" ;
1616import { getExpService } from "../exp" ;
1717import { TreatmentVariables } from "../exp/TreatmentVariables" ;
18- import { javaFormatterSettingsEditorProvider } from "../formatter-settings" ;
1918
2019export function initialize ( context : vscode . ExtensionContext ) {
2120 context . subscriptions . push ( vscode . commands . registerCommand ( "java.overview" , instrumentCommand ( context , "java.overview" , instrumentCommand ( context , "java.helper.overview" , overviewCmdHandler ) ) ) ) ;
@@ -32,7 +31,6 @@ export function initialize(context: vscode.ExtensionContext) {
3231 context . subscriptions . push ( vscode . commands . registerCommand ( "java.extGuide" , instrumentCommand ( context , "java.extGuide" , javaExtGuideCmdHandler ) ) ) ;
3332 context . subscriptions . push ( instrumentOperationAsVsCodeCommand ( "java.webview.runCommand" , webviewCmdLinkHandler ) ) ;
3433 context . subscriptions . push ( vscode . commands . registerCommand ( "java.welcome" , instrumentCommand ( context , "java.welcome" , showWelcomeWebview ) ) ) ;
35- context . subscriptions . push ( vscode . commands . registerCommand ( "java.formatterSettings" , instrumentCommand ( context , "java.formatterSettings" , ( ) => javaFormatterSettingsEditorProvider . showFormatterSettingsEditor ( ) ) ) ) ;
3634 context . subscriptions . push ( vscode . commands . registerCommand ( "java.classpathConfiguration" , instrumentCommand ( context , "java.classpathConfiguration" , async ( ) => {
3735 const showCustomizedView : boolean = await getExpService ( ) ?. getTreatmentVariableAsync ( TreatmentVariables . VSCodeConfig , TreatmentVariables . CustomizedClasspathConfigurationView , true /*checkCache*/ ) || false ;
3836 if ( showCustomizedView ) {
0 commit comments