Detekt suggested that I could change an abstract c...
# general-advice
l
Detekt suggested that I could change an abstract class with only abstract members to an interface. I did this, and re-ran a unit test. The first time I used the new interface in my test, I ran into
Found interface Foo, but class was expected
. Is this an indicator of a bug in the gradle compilation caching mechanism? Cleaning the project fixed this. I remember reading about compilation cache changes in 1.7.10 (what I’m currently using).