Decrease visibility of inner classes. #1555

Fixes `PackageVisibleInnerClass` inspection violation.

Description:
>Reports package-local inner classes.
This commit is contained in:
Michal Kordas 2015-08-11 23:31:57 +02:00 committed by Roman Ivanov
parent c4928f486c
commit ea06b2fb96
2 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ public class RightCurlyCheck extends AbstractOptionCheck<RightCurlyOption> {
/**
* Structure that contains all details for validation.
*/
static class Details {
private static class Details {
/** Right curly. */
private DetailAST rcurly;
/** Left curly. */

View File

@ -780,7 +780,7 @@ public class CustomImportOrderCheck extends Check {
* group.
* @author max
*/
static class ImportDetails {
private static class ImportDetails {
/** Import full path */
private String importFullPath;