Open bahellma opened 9 years ago
This rule comes form the android code style rule "Treat Acronyms as Words" (https://source.android.com/source/code-style.html)
"Treat acronyms and abbreviations as words in naming variables, methods, and classes. The names are much more readable:"
Example: Good: XmlHttpRequest Bad: XMLHTTPRequest
Checkstyle policy does not allow camel case when multiple upper case letters follow each other; it always expects there to be at least one lower case letter
methodNameA is allowed, methodNameAB is not allowed