Skip to content
Snippets Groups Projects

Partially fixed IntelliJ warnings (#361)

Merged Christopher Konkel requested to merge stu207811/theodolite_fork:Kotlin-Warning-Fixes into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -136,7 +136,7 @@ class TheodoliteOperator(private val client: NamespacedKubernetesClient) {
ExecutionCRD,
BenchmarkExecutionList,
Resource<ExecutionCRD>> {
return this.client.customResources(
return client.resources(
ExecutionCRD::class.java,
BenchmarkExecutionList::class.java
)
@@ -146,7 +146,7 @@ class TheodoliteOperator(private val client: NamespacedKubernetesClient) {
BenchmarkCRD,
KubernetesBenchmarkList,
Resource<BenchmarkCRD>> {
return this.client.customResources(
return client.resources(
BenchmarkCRD::class.java,
KubernetesBenchmarkList::class.java
)
Loading