aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrnveach <rveach02@gmail.com>2017-02-17 17:50:40 -0500
committerRoman Ivanov <romani@users.noreply.github.com>2017-02-17 16:34:14 -0800
commite60bf1807aa9d02552948781f8ffa8dcc6c40f16 (patch)
treef9d9ad1795a1aa5a1b6a1661396598287c3f2be8 /src
parent6e8d1e06728b7defbd734253b3818a33676b62bc (diff)
downloadcheckstyle-e60bf1807aa9d02552948781f8ffa8dcc6c40f16.tar.gz
Issue #3748: updated reason for google's EmptyBlockCheck config
Diffstat (limited to 'src')
-rw-r--r--src/test/java/com/puppycrawl/tools/checkstyle/internal/AllChecksTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/java/com/puppycrawl/tools/checkstyle/internal/AllChecksTest.java b/src/test/java/com/puppycrawl/tools/checkstyle/internal/AllChecksTest.java
index a49b9a6b3..cafb4e61b 100644
--- a/src/test/java/com/puppycrawl/tools/checkstyle/internal/AllChecksTest.java
+++ b/src/test/java/com/puppycrawl/tools/checkstyle/internal/AllChecksTest.java
@@ -219,8 +219,7 @@ public class AllChecksTest extends BaseCheckTestSupport {
// google doesn't require or prevent braces on these
"LAMBDA", "LITERAL_DEFAULT", "LITERAL_CASE").collect(Collectors.toSet()));
GOOGLE_TOKENS_IN_CONFIG_TO_IGNORE.put("EmptyBlock", Stream.of(
- // state of the configuration when test was made until
- // https://github.com/checkstyle/checkstyle/issues/3748
+ // google doesn't specifically mention empty braces at the start of a case/default
"LITERAL_DEFAULT", "LITERAL_CASE",
// can be empty for special cases via '6.2 Caught exceptions: not ignored'
"LITERAL_CATCH",