mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Cleanup and clientSession uncomment (#10162)
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
|
||||
import { default as AnsiUp } from 'ansi_up';
|
||||
import { IRenderMime } from 'sql/workbench/services/notebook/browser/outputs/renderMimeInterfaces';
|
||||
import { URLExt } from 'sql/workbench/contrib/notebook/common/models/url';
|
||||
import { URI } from 'vs/base/common/uri';
|
||||
|
||||
|
||||
@@ -645,7 +644,7 @@ namespace Private {
|
||||
if (path && path.length > 0) {
|
||||
isLocal = resolver && resolver.isLocal
|
||||
? resolver.isLocal(path)
|
||||
: URLExt.isLocal(path);
|
||||
: !!URI.parse(path).scheme;
|
||||
} else {
|
||||
// Empty string, so default to local
|
||||
isLocal = true;
|
||||
|
||||
Reference in New Issue
Block a user