Fix Checkstyle errors - all mine :-(

This commit is contained in:
oburn 2003-02-04 11:45:44 +00:00
parent 6f26b0a5b7
commit 90ff4ce846
2 changed files with 4 additions and 3 deletions

View File

@ -83,7 +83,7 @@ abstract class AbstractLoader
mParser.parse(aInputSource);
}
/** Jibber inheritDoc */
/** {@inheritDoc} */
public InputSource resolveEntity(String aPublicId, String aSystemId)
throws SAXException, IOException
{

View File

@ -103,7 +103,7 @@ public final class Main
e.printStackTrace(System.out);
System.exit(1);
}
//Load the set of package names
ModuleFactory moduleFactory = null;
if (line.hasOption("n")) {
@ -140,7 +140,7 @@ public final class Main
// Get the file extension
final String javaExtn =
"." + (line.hasOption("e") ? line.getOptionValue("e") : "java");
// create the appropriate listener
final String format =
line.hasOption("f") ? line.getOptionValue("f") : "plain";
@ -218,6 +218,7 @@ public final class Main
*
* @param aNode the node to process
* @param aFiles list to add found files to
* @param aExtension specifies the extension for Java source files
*/
private static void traverse(File aNode, List aFiles, String aExtension)
{