Cleanup on naming.
This commit is contained in:
parent
92358288d9
commit
2795663dae
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue