Updated Branches: refs/heads/master e15d5f837 -> a7674c74d
changes the regexp for MutableException CheckStyle check Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a7674c74 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a7674c74 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a7674c74 Branch: refs/heads/master Commit: a7674c74da20b8d1da049ddb4be9ef5d439e2c27 Parents: e15d5f8 Author: cmueller <[email protected]> Authored: Sun Jun 30 22:59:29 2013 +0200 Committer: cmueller <[email protected]> Committed: Sun Jun 30 22:59:29 2013 +0200 ---------------------------------------------------------------------- buildingtools/camel-checkstyle.xml | 4 +++- buildingtools/src/main/resources/camel-checkstyle.xml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/a7674c74/buildingtools/camel-checkstyle.xml ---------------------------------------------------------------------- diff --git a/buildingtools/camel-checkstyle.xml b/buildingtools/camel-checkstyle.xml index a611173..b2ca3aa 100644 --- a/buildingtools/camel-checkstyle.xml +++ b/buildingtools/camel-checkstyle.xml @@ -275,7 +275,9 @@ lengths, if/try depths, etc... <!-- We still do enum style interfaces <module name="InterfaceIsType"/> --> - <module name="MutableException"/> + <module name="MutableException"> + <property name="format" value="^.*Exception$"/> + </module> <module name="ThrowsCount"> <property name="max" value="5"/> </module> http://git-wip-us.apache.org/repos/asf/camel/blob/a7674c74/buildingtools/src/main/resources/camel-checkstyle.xml ---------------------------------------------------------------------- diff --git a/buildingtools/src/main/resources/camel-checkstyle.xml b/buildingtools/src/main/resources/camel-checkstyle.xml index 40ef431..2371a46 100644 --- a/buildingtools/src/main/resources/camel-checkstyle.xml +++ b/buildingtools/src/main/resources/camel-checkstyle.xml @@ -278,7 +278,9 @@ lengths, if/try depths, etc... <!-- We still do enum style interfaces <module name="InterfaceIsType"/> --> - <module name="MutableException"/> + <module name="MutableException"> + <property name="format" value="^.*Exception$"/> + </module> <module name="ThrowsCount"> <property name="max" value="5"/> </module>
