Skip to content

Commit cf71a0a

Browse files
committed
Fix code review comments
1 parent 46b6204 commit cf71a0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/common/utils/misc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function isResource(resource?: InterpreterUri): resource is Resource {
5353
// tslint:disable-next-line: no-any
5454
export function isUri(resource?: Uri | any): resource is Uri {
5555
if (!resource) {
56-
return true;
56+
return false;
5757
}
5858
const uri = resource as Uri;
5959
return typeof uri.path === 'string' && typeof uri.scheme === 'string';

0 commit comments

Comments
 (0)