Remove unused code

This commit is contained in:
Neil MacDougall 2023-09-05 17:01:07 +01:00
parent f85ed8c4f5
commit 2bb516b9ef
1 changed files with 0 additions and 6 deletions

View File

@ -115,10 +115,6 @@ export default Component.extend({
}
}),
k8sVersionDidChange: observer('config.kubernetesVersion', function() {
this.checkWeaveDeprecation();
}),
networkPluginDidChange: observer('config.network.plugin', function() {
let plugin = get(this, 'config.network.plugin');
@ -135,8 +131,6 @@ export default Component.extend({
} else if (plugin !== WEAVE && get(this, 'config.network.weaveNetworkProvider.password')) {
set(this, 'config.network.weaveNetworkProvider', null);
}
this.checkWeaveDeprecation();
}
}),