Cleanup on naming.

This commit is contained in:
Oliver Burn 2002-06-16 12:22:05 +00:00
parent 92358288d9
commit 2795663dae
3 changed files with 3 additions and 3 deletions

View File

@ -411,7 +411,7 @@ public class CheckStyleTask
/** @param aEnable whether to check if unused @throws are a
* RuntimeException
**/
public void setEnableCheckUnusedThrows(final boolean aEnable)
public void setCheckUnusedThrows(final boolean aEnable)
{
setBooleanProperty(Defn.JAVADOC_CHECK_UNUSED_THROWS_PROP, aEnable);
}

View File

@ -484,7 +484,7 @@ public class Configuration
}
/** @return whether to check unused @throws **/
public boolean isEnableCheckUnusedThrows()
public boolean isCheckUnusedThrows()
{
return getBooleanProperty(Defn.JAVADOC_CHECK_UNUSED_THROWS_PROP);
}

View File

@ -1303,7 +1303,7 @@ class Verifier
// Handle extra JavadocTag.
if (!found) {
boolean reqd = true;
if (mConfig.isEnableCheckUnusedThrows()) {
if (mConfig.isCheckUnusedThrows()) {
final ClassResolver cr = new ClassResolver(
mConfig.getClassLoader(), mPkgName, mImports);
try {