Updated error message for draft 2019-09

Linked to https://github.com/microsoft/vscode/issues/81830
This commit is contained in:
Ben Hutton 2019-10-28 16:45:34 +00:00 коммит произвёл GitHub
Родитель 95f815ebbe
Коммит fb1979364a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -400,7 +400,7 @@ export class JSONSchemaService implements IJSONSchemaService {
if (id === 'http://json-schema.org/draft-03/schema') {
return this.promise.resolve(new ResolvedSchema({}, [ localize('json.schema.draft03.notsupported', "Draft-03 schemas are not supported.") ]));
} else if (id === 'https://json-schema.org/draft/2019-09/schema') {
schemaToResolve.errors.push(localize('json.schema.draft08.notsupported', "Draft-08 schemas are not yet fully supported."));
schemaToResolve.errors.push(localize('json.schema.draft201909.notsupported', "Draft 2019-09 schemas are not yet fully supported."));
}
}