Expected Behavior
The elvis operator is a conditional so code like this should be accepted:
for (resource in Detektor::class.java.classLoader.getResources("META-INF/MANIFEST.MF")) {
return runCatching { readVersion(resource) }.getOrNull() ?: continue
}
Observed Behavior
It fails
Context
We found this false positive at #2387
Your Environment
- Version of detekt used: 1.6.0
Expected Behavior
The elvis operator is a conditional so code like this should be accepted:
Observed Behavior
It fails
Context
We found this false positive at #2387
Your Environment