@@ -74,12 +74,6 @@ namespace DynamicCustomSchemaRequestRegistration {
74
74
export const type : NotificationType < { } > = new NotificationType ( 'yaml/registerCustomSchemaRequest' ) ;
75
75
}
76
76
77
- // eslint-disable-next-line @typescript-eslint/no-namespace
78
- export namespace KubernetesSchemaURLsNotification {
79
- // eslint-disable-next-line @typescript-eslint/ban-types
80
- export const type : NotificationType < string [ ] > = new NotificationType ( 'yaml/kubernetesSchemaURLs' ) ;
81
- }
82
-
83
77
// eslint-disable-next-line @typescript-eslint/no-namespace
84
78
namespace ResultLimitReachedNotification {
85
79
// eslint-disable-next-line @typescript-eslint/ban-types
@@ -167,7 +161,6 @@ export function startClient(
167
161
client . sendNotification ( SchemaAssociationNotification . type , getSchemaAssociations ( ) ) ;
168
162
findConflicts ( ) ;
169
163
} ) ;
170
- client . sendNotification ( KubernetesSchemaURLsNotification . type , getKubernetesSchemaURLs ( ) ) ;
171
164
// Tell the server that the client is ready to provide custom schema content
172
165
client . sendNotification ( DynamicCustomSchemaRequestRegistration . type ) ;
173
166
// Tell the server that the client supports schema requests sent directly to it
@@ -236,10 +229,6 @@ function findConflicts(): void {
236
229
}
237
230
}
238
231
239
- function getKubernetesSchemaURLs ( ) : string [ ] {
240
- return workspace . getConfiguration ( 'yaml' ) . get ( 'kubernetesSchemaURLs' ) || [ ] ;
241
- }
242
-
243
232
function getSchemaAssociations ( ) : ISchemaAssociation [ ] {
244
233
const associations : ISchemaAssociation [ ] = [ ] ;
245
234
extensions . all . forEach ( ( extension ) => {
0 commit comments