doclint fixes

This commit is contained in:
Jeremy Long
2016-03-05 13:18:24 -05:00
parent 5506e58c98
commit c5c32f683f

View File

@@ -44,27 +44,27 @@ import java.security.MessageDigest;
public class ComposerLockAnalyzer extends AbstractFileTypeAnalyzer { public class ComposerLockAnalyzer extends AbstractFileTypeAnalyzer {
/** /**
* The logger * The logger.
*/ */
private static final Logger LOGGER = LoggerFactory.getLogger(ComposerLockAnalyzer.class); private static final Logger LOGGER = LoggerFactory.getLogger(ComposerLockAnalyzer.class);
/** /**
* The analyzer name * The analyzer name.
*/ */
private static final String ANALYZER_NAME = "Composer.lock analyzer"; private static final String ANALYZER_NAME = "Composer.lock analyzer";
/** /**
* composer.json * composer.json.
*/ */
private static final String COMPOSER_LOCK = "composer.lock"; private static final String COMPOSER_LOCK = "composer.lock";
/** /**
* The FileFilter * The FileFilter.
*/ */
private static final FileFilter FILE_FILTER = FileFilterBuilder.newInstance().addFilenames(COMPOSER_LOCK).build(); private static final FileFilter FILE_FILTER = FileFilterBuilder.newInstance().addFilenames(COMPOSER_LOCK).build();
/** /**
* Returns the FileFilter * Returns the FileFilter.
* *
* @return the FileFilter * @return the FileFilter
*/ */
@@ -74,9 +74,9 @@ public class ComposerLockAnalyzer extends AbstractFileTypeAnalyzer {
} }
/** /**
* Initializes the analyzer * Initializes the analyzer.
* *
* @throws Exception * @throws Exception thrown if an exception occurs getting an instance of SHA1
*/ */
@Override @Override
protected void initializeFileTypeAnalyzer() throws Exception { protected void initializeFileTypeAnalyzer() throws Exception {
@@ -84,7 +84,7 @@ public class ComposerLockAnalyzer extends AbstractFileTypeAnalyzer {
} }
/** /**
* The MessageDigest for calculating a new digest for the new dependencies added * The MessageDigest for calculating a new digest for the new dependencies added.
*/ */
private MessageDigest sha1 = null; private MessageDigest sha1 = null;