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
@@ -143,7 +143,7 @@ class TheodoliteOperator {
@@ -143,7 +143,7 @@ class TheodoliteOperator {
ExecutionCRD,
ExecutionCRD,
BenchmarkExecutionList,
BenchmarkExecutionList,
Resource<ExecutionCRD>> {
Resource<ExecutionCRD>> {
return client.customResources(
return client.resources(
ExecutionCRD::class.java,
ExecutionCRD::class.java,
BenchmarkExecutionList::class.java
BenchmarkExecutionList::class.java
)
)
@@ -153,7 +153,7 @@ class TheodoliteOperator {
@@ -153,7 +153,7 @@ class TheodoliteOperator {
BenchmarkCRD,
BenchmarkCRD,
KubernetesBenchmarkList,
KubernetesBenchmarkList,
Resource<BenchmarkCRD>> {
Resource<BenchmarkCRD>> {
return client.customResources(
return client.resources(
BenchmarkCRD::class.java,
BenchmarkCRD::class.java,
KubernetesBenchmarkList::class.java
KubernetesBenchmarkList::class.java
)
)
Loading