Skip to content

Commit a888b93

Browse files
committed
chore - dead code removal
1 parent 64dbafe commit a888b93

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/vs/base/common/severity.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import * as nls from 'vs/nls';
76
import * as strings from 'vs/base/common/strings';
87

98
enum Severity {
@@ -20,11 +19,6 @@ namespace Severity {
2019
const _warn = 'warn';
2120
const _info = 'info';
2221

23-
const _displayStrings: { [value: number]: string; } = Object.create(null);
24-
_displayStrings[Severity.Error] = nls.localize('sev.error', "Error");
25-
_displayStrings[Severity.Warning] = nls.localize('sev.warning', "Warning");
26-
_displayStrings[Severity.Info] = nls.localize('sev.info', "Info");
27-
2822
/**
2923
* Parses 'error', 'warning', 'warn', 'info' in call casings
3024
* and falls back to ignore.

0 commit comments

Comments
 (0)