When I implement a method or a property in a class...
# intellij
v
When I implement a method or a property in a class that implements an interface, can I change the template so that it won’t include the return type? Currently, it makes like this:
Copy code
override fun stage(): List<String> {
			TODO("Not yet implemented")
		}
But I would like to do it as:
Copy code
override fun stage() = $END$
Is it possible?