Fix Javadoc error. Bizarre, but if I make the tag {@inheritDoc}, the Javadoc

hangs?!
This commit is contained in:
Oliver Burn 2003-03-30 02:37:08 +00:00
parent 8f965910b0
commit 3e5a642f7c
1 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ public abstract class AbstractFileSetCheck
/** collects the error messages */
private final LocalizedMessages mMessages = new LocalizedMessages();
/** @{inheritDoc} */
/** @see com.puppycrawl.tools.checkstyle.api.FileSetCheck */
public void destroy()
{
}
@ -81,7 +81,7 @@ public abstract class AbstractFileSetCheck
if ((mFileExtensions == null) || (mFileExtensions.length == 0)) {
return aFiles;
}
final ArrayList files = new ArrayList(aFiles.length);
for (int i = 0; i < aFiles.length; i++) {
final File f = aFiles[i];
@ -108,7 +108,7 @@ public abstract class AbstractFileSetCheck
mFileExtensions = null;
return;
}
mFileExtensions = new String[aExtensions.length];
for (int i = 0; i < aExtensions.length; i++) {
final String extension = aExtensions[i];