File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export function activate(context: vscode.ExtensionContext) {
2222
2323 const extensionDisplayName = extensionData . get ( "displayName" ) ;
2424
25- let disabledLangConfig : string [ ] = configuration . getConfigurationValue < string [ ] > ( "disabledLanguages" ) ;
25+ let disabledLangConfig : string [ ] = configuration . getConfigurationValue ( "disabledLanguages" ) ;
2626
2727 if ( disabledLangConfig . length > 0 ) {
2828 vscode . window . showInformationMessage ( `${ disabledLangConfig . join ( ", " ) } languages are disabled for ${ extensionDisplayName } .` ) ;
@@ -41,7 +41,7 @@ export function activate(context: vscode.ExtensionContext) {
4141 // If the affected setting is bladeOverrideComments...
4242 if ( event . affectsConfiguration ( `${ extensionName } .bladeOverrideComments` ) ) {
4343 // Get the setting.
44- let bladeOverrideComments : boolean = configuration . getConfigurationValue < boolean > ( "bladeOverrideComments" ) ;
44+ let bladeOverrideComments : boolean = configuration . getConfigurationValue ( "bladeOverrideComments" ) ;
4545
4646 configuration . setBladeComments ( bladeOverrideComments ) ;
4747
You can’t perform that action at this time.
0 commit comments