Fix Javadoc error. Bizarre, but if I make the tag {@inheritDoc}, the Javadoc
hangs?!
This commit is contained in:
parent
8f965910b0
commit
3e5a642f7c
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Reference in New Issue