Skip to content

Commit

Permalink
fix checkstyle#31 : Exclude some java.util classes from Class Fan out
Browse files Browse the repository at this point in the history
  • Loading branch information
vmassol committed Oct 27, 2013
1 parent 64b035d commit b22f805
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ protected AbstractClassCouplingCheck(int aDefaultMax)
mIgnoredClassNames.add("long");
mIgnoredClassNames.add("short");
mIgnoredClassNames.add("void");

// java.lang.*
mIgnoredClassNames.add("Boolean");
mIgnoredClassNames.add("Byte");
mIgnoredClassNames.add("Character");
Expand All @@ -86,6 +88,14 @@ protected AbstractClassCouplingCheck(int aDefaultMax)
mIgnoredClassNames.add("Throwable");
mIgnoredClassNames.add("SecurityException");
mIgnoredClassNames.add("UnsupportedOperationException");
mIgnoredClassNames.add("Class");

// java.util.*
mIgnoredClassNames.add("Map");
mIgnoredClassNames.add("List");
mIgnoredClassNames.add("HashMap");
mIgnoredClassNames.add("ArrayList");
mIgnoredClassNames.add("Locale");
}

@Override
Expand Down

0 comments on commit b22f805

Please sign in to comment.