Issue #1555: Decrease visibility of public constructor in non-public class

Fixes `PublicConstructorInNonPublicClass` inspection violations.

Description:
>Reports all constructors in non-public classes that are declared public.
This commit is contained in:
Michal Kordas 2015-08-29 08:38:38 +02:00 committed by Roman Ivanov
parent a95266d1a1
commit 3d9f726c2d
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public abstract class BaseCheckTestSupport
static class BriefLogger
extends DefaultLogger
{
public BriefLogger(OutputStream out) throws UnsupportedEncodingException
BriefLogger(OutputStream out) throws UnsupportedEncodingException
{
super(out, true);
}