Hi there. is there a way to force kotlin to not us...
# javadevelopers
w
Hi there. is there a way to force kotlin to not use getter convention when accessing a property? I have a transitive depenency that has
getLogging()
in 1 version and just a property called
logging
in the next, and when i compile against the former, running against the latter fails b/c its looking for a getter method still
right now i have to work around it with reflection 😕