carloscs

Avatar
  • 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<...
    • 2 followers
    • 2 comments
    • 0 votes
  • 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
    • 3 followers
    • 4 comments
    • 0 votes
  • 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 :)
    • 2 followers
    • 1 comment
    • 0 votes