mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
remove unneccessary webpack import (#20166)
This commit is contained in:
@@ -11,7 +11,6 @@ import { EOL } from 'os';
|
|||||||
import { DatabaseMigration } from '../api/azure';
|
import { DatabaseMigration } from '../api/azure';
|
||||||
import { DashboardStatusBar } from './sqlServerDashboard';
|
import { DashboardStatusBar } from './sqlServerDashboard';
|
||||||
import { getSelectedServiceStatus } from '../models/migrationLocalStorage';
|
import { getSelectedServiceStatus } from '../models/migrationLocalStorage';
|
||||||
import { util } from 'webpack';
|
|
||||||
|
|
||||||
export const SqlMigrationExtensionId = 'microsoft.sql-migration';
|
export const SqlMigrationExtensionId = 'microsoft.sql-migration';
|
||||||
export const EmptySettingValue = '-';
|
export const EmptySettingValue = '-';
|
||||||
@@ -64,7 +63,7 @@ export abstract class TabBase<T> implements azdata.Tab, vscode.Disposable {
|
|||||||
} else if (!number2) {
|
} else if (!number2) {
|
||||||
return -sortDir;
|
return -sortDir;
|
||||||
}
|
}
|
||||||
return util.comparators.compareNumbers(number1, number2) * -sortDir;
|
return number1 > number2 ? -sortDir : sortDir;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected stringCompare(string1: string | undefined, string2: string | undefined, sortDir: number): number {
|
protected stringCompare(string1: string | undefined, string2: string | undefined, sortDir: number): number {
|
||||||
|
|||||||
Reference in New Issue
Block a user