unconfiguredPortsAttributes -> otherPortsAttributes

Fixes microsoft/vscode-remote-release#4732
This commit is contained in:
Alex Ross
2021-03-23 14:57:40 +01:00
parent 73b9e6679d
commit 64381abea9
5 changed files with 9 additions and 9 deletions

View File

@@ -154,7 +154,7 @@ interface PortAttributes extends Attributes {
export class PortsAttributes extends Disposable {
private static SETTING = 'remote.portsAttributes';
private static DEFAULTS = 'remote.unconfiguredPortsAttributes';
private static DEFAULTS = 'remote.otherPortsAttributes';
private static RANGE = /^(\d+)\-(\d+)$/;
private portsAttributes: PortAttributes[] = [];
private defaultPortAttributes: Attributes | undefined;