carloscs

- Total activity 135
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 61
-
Created Generics problem
Even more blind than my usual self...public void test() { List<?> s = new ArrayList<String>(); List<List<String>> data = new ArrayList<List<String>>(); List<List<?>> x = data; List<... -
Created Magic Number inspection
Add 100 and 1000 as exceptions for the Magic Number inspection. Very commonly used numbers.http://www.jetbrains.net/jira/browse/IDEA-15537 -
Created ipp: flip && and || suggestion
Flip && and ||Just now I had:if (costlyMethod() || var == true)and wanted:if (var == true || costlyMethod())Hmmph. Had to do it by hand. I'm getting unused to this :)