aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java
diff options
context:
space:
mode:
authorRoman Ivanov <ivanov-jr@mail.ru>2015-11-18 05:53:18 -0800
committerRoman Ivanov <ivanov-jr@mail.ru>2015-11-18 05:53:18 -0800
commitc324b05dfdeb0ce41af355db95b7da3149f8f98a (patch)
treece86735533fa7a12cbaf4d669830849d189b5567 /src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java
parent0975fb750b3d6775d514c8c096786fe6f7a6c272 (diff)
downloadcheckstyle-c324b05dfdeb0ce41af355db95b7da3149f8f98a.tar.gz
Revert "Issue #2290: Add 'skipCatchParameter' to skip catch parameter from validation"
This reverts commit 176301250bfd2063f405fed4a960064e0a3e0230.
Diffstat (limited to 'src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java')
-rw-r--r--src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java b/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java
deleted file mode 100644
index 47388bef2..000000000
--- a/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchParameter.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.puppycrawl.tools.checkstyle.checks.naming;
-
-import java.io.FileNotFoundException;
-import java.io.IOException;
-import java.sql.SQLException;
-
-public class InputCatchParameter {
-
- void foo1() {
- try {
-
- }
- catch (Exception ex) {
-
- }
- }
-
- void foo2() {
- try {
-
- }
- catch (NullPointerException | IllegalArgumentException ex) {
- // just to check how the ParentName's option 'skipCahcthParameter' deals with catching
- // multiple exception types and
- }
- }
-}