What does kotlin community thinks on this? Continu...
# announcements
e
What does kotlin community thinks on this? Continue stuttering like in Java(2nd) or time to stop (1st)?
c
There’s no way to enforce someone to use the fully-qualified name for a class in type signatures, so you should go with
TopicService
. And IDEs tend to move/suggest moving fully-qualified names to imports, anyway
👍 1
g
you can disable wildcard grouping in IDE but overall it's just looking for troubles
d
Also don't disrecard the indexing property of TopicService. What I mean is you can easily search for "TopicService" in the class search .. but try to search
Service
and you will most likely have lots of faslse positives 🙂