@gammax Thanks for reply. I want to force to dev that do not use that annotation inside class keep outside of that.
g
gammax
08/07/2020, 12:19 PM
I want to force to dev that do not use that annotation inside class keep outside of that.
I don’t understand sorry. You want to prevent the usage of such annotation. Is that correct?
r
Rupesh
08/07/2020, 12:21 PM
I want to prevent inside the class but outside the class dev can use.
i.e.
Copy code
class A{
// Here prevent
}
//Here dev can use because its outside the class but in the same file
@Sample
fun testMethod4(){
// implementation goes here
}