Commit Graph

455 Commits

Author SHA1 Message Date
Oleg Sukhodolsky bdaf63e08c Added PackageDeclaration check. (request 750753). 2003-08-22 15:24:27 +00:00
Oleg Sukhodolsky 67da361a9a illegalClassNames property added to IllegalCatch check. 2003-08-21 20:55:19 +00:00
Oleg Sukhodolsky 9aa9d75107 IllegalCatchCheck (request 750746). 2003-08-21 20:04:46 +00:00
Oleg Sukhodolsky 5bac11f295 Release notes update 2003-08-20 11:50:57 +00:00
Rick Giles d468d6151d minor grammar corrections 2003-08-20 11:49:08 +00:00
Rick Giles 5c9578a108 Removed finder restrictions of LocalHomeInterfaceCheck and RemoteHomeInterfaceCheck (bug 791591) 2003-08-20 10:07:01 +00:00
Oleg Sukhodolsky 1d0c8e6e0e Documentation for DescendantToken check 2003-08-19 16:45:47 +00:00
Oleg Sukhodolsky 0855fff95e Fix for NoSuchMethodError when line wrapped at dot operator (bug 790209) 2003-08-19 04:54:31 +00:00
Rick Giles dc3fc5fab0 Added property to HiddenFieldCheck to ignore the parameter of
property setter methods (request 790456).
2003-08-18 12:27:55 +00:00
Rick Giles af1b996a4e fixed bug 787672, NullPointerException in Unused... checks 2003-08-16 10:54:41 +00:00
Rick Giles 60847a32d5 fixed bug 788106, MagicNumberCheck does not permits negative constants 2003-08-13 23:59:39 +00:00
Rick Giles 113ea8405c Corrected RedundantModifierCheck error for public modifier of a
method defined in an inner implementation (bug 784814).
2003-08-10 10:39:33 +00:00
Rick Giles 927ec62235 fixed NoSuchElementException in JavadocStyleCheck (bug 785514) 2003-08-09 16:46:25 +00:00
Lars Kühne e9cc31b2ec added docs for duplicate code detection 2003-08-09 06:30:58 +00:00
Lars Kühne d974a457e1 use 3.x instead of 3.0 as the upgrade target 2003-08-09 05:46:50 +00:00
Lars Kühne bb1db4938c fixed bug #772832, Confusion about class named 'Boolean' 2003-08-03 13:22:44 +00:00
Rick Giles 2d1687465f minor technical correction to documentation 2003-08-02 15:57:55 +00:00
Oleg Sukhodolsky 1c7341013d fixed typo in config file. 2003-07-29 09:05:28 +00:00
Rick Giles 3535f542dc Added a check for illegal token text (requests 740694 and 750633) 2003-07-26 20:16:24 +00:00
Rick Giles 8a12b000f2 Added MethodLengthCheck option for counting empty and comment lines (requests 589358 and 654039). 2003-07-26 11:32:38 +00:00
Rick Giles ee8467d367 Corrected EmptyForIteratorPadCheck errors when line wrap occurs
at the iterator, bug 777471
2003-07-25 16:13:32 +00:00
Rick Giles 89188bf3eb minor HTML correction 2003-07-21 19:13:10 +00:00
Rick Giles 3ed2fd68f8 Enhanced RedundantModifier to check that all private methods and all methods in a
final class do not contain modifier final (discussed in request 775011)
2003-07-21 19:05:13 +00:00
Oleg Sukhodolsky 57ea0b6a11 Made basedir property of Checker OS agnostic (663149) 2003-07-20 08:17:36 +00:00
Rick Giles dd477210ae Custom listeners can be incorported as config modules,
not command line arguments and ant task elements.
2003-07-18 11:31:45 +00:00
Rick Giles 524dd37a5b documentation for Filter/FilterSet 2003-07-16 10:20:46 +00:00
Rick Giles a9bfdceec2 completed Filter docs. 2003-07-15 11:10:15 +00:00
Rick Giles 0587b63fec documented Filter configuration 2003-07-14 20:28:12 +00:00
Rick Giles 524a7eca73 Renamed "filter" package to "filters" for consistency with "checks".
Incorporated "filters" in package names.
2003-07-14 18:43:49 +00:00
Rick Giles e464c7197a spelling 2003-07-14 17:48:19 +00:00
Oliver Burn 51dae59b8d New Javadoc style check from Chris Stillwell. 2003-07-14 12:31:52 +00:00
Rick Giles e55435125e corrected misspelling of "precede", bug 744342 2003-07-14 10:24:01 +00:00
Rick Giles ea10feeb83 usage docs 2003-07-11 18:37:45 +00:00
Rick Giles bb52a25c6c added check that overriding finalize method calls super.finalize 2003-07-07 09:17:30 +00:00
Rick Giles 18718ffeab added check that an overriding clone() method calls super.clone(). 2003-07-06 22:33:59 +00:00
Rick Giles b904923180 docs for j2ee checks 2003-07-05 17:17:28 +00:00
Lars Kühne 59de966a7e Added allowInSwitchCase property to AvoidNestedBlocksCheck
to allow limiting the scope of variables to one case of a switch statement.

Also currently playing with the Clover IDEA plugin - man, this rocks!!
2003-07-05 11:09:52 +00:00
Rick Giles f9e4b4c304 minor grammar correction 2003-07-02 19:50:41 +00:00
Rick Giles b07f845ac1 added IllegalTokenCheck, request 750755 2003-07-02 12:48:43 +00:00
Oleg Sukhodolsky 50c242141a indent.severity removed, translation.severity added to checkstyle.style target 2003-06-29 12:56:51 +00:00
Oleg Sukhodolsky 8de6dda16b Fix javadoc problem. 2003-06-29 10:04:52 +00:00
Oleg Sukhodolsky a30cd217f3 Implementation for NestedIfDepthCheck and NestedTryDepthCheck.
Thanks Simon.
2003-06-28 20:02:25 +00:00
Oliver Burn 768256c32a I am sick of Spam! :-( 2003-06-27 11:04:38 +00:00
Lars Kühne cc822a77b4 fixed typo (security vs severity) 2003-06-27 04:25:12 +00:00
Rick Giles 71d92d649f check that a class that defines a covariant equals method also overrides
equals(java.lang.Object)
2003-06-26 16:19:46 +00:00
Lars Kühne b19b59296f added docs for StringLiteralEquality 2003-06-26 04:43:28 +00:00
Oliver Burn 3a75454e8d Added CyclomaticComplexityCheck from Simon Harris.
Refactored quite a bit
2003-06-24 12:35:40 +00:00
Lars Kühne 731b581a1c Added excludes property to AvoidStarImport, request 744955
contributed by Bill Schneider
2003-06-23 21:11:23 +00:00
Oliver Burn cf089fe1a1 Fix the Checkstyle errors created by Spud's patch. 2003-06-23 11:36:07 +00:00
Oliver Burn e03dab4d1f Patch from Matt Quail to stop the ugly hack of having hard
coded constants in TokenTypes. The big risk was that when
the grammar changed, the generated constants could
change. (patch 757846)
2003-06-21 12:34:01 +00:00