In C# in Visual Studio I can do this with
#warning The following method needs refactoring for clarity
What's the Android Studio equivalent?
In C# in Visual Studio I can do this with
#warning The following method needs refactoring for clarity
What's the Android Studio equivalent?
try something like this: @SuppressWarnings("your message")
for example
@SuppressWarnings("your message")
myMethod(){
body;
}
also, look at this question:
How to intentionally cause a custom java compiler warning message?