Trying to get into the recommended style from Sun.

This commit is contained in:
Oliver Burn 2002-04-22 09:02:22 +00:00
parent 91a4d48af7
commit f1dc5b5778
1 changed files with 2 additions and 2 deletions

View File

@ -230,8 +230,8 @@ class Verifier
checkModOrder(aSig.getModSet());
// JLS, chapter 9.4 - public in interface is strongly discouraged
if (!mConfig.isIgnorePublicInInterface() &&
inInterfaceBlock() && aSig.getModSet().containsPublic())
if (!mConfig.isIgnorePublicInInterface() && inInterfaceBlock()
&& aSig.getModSet().containsPublic())
{
log(aSig.getLineNo(), "redundant 'public' modifier.");
}