Reviewed Javadoc.

This commit is contained in:
Christian P. MOMON 2021-12-31 23:21:49 +01:00
parent 50ec907ac8
commit 1da2b34734
2 changed files with 13 additions and 7 deletions

View file

@ -48,8 +48,9 @@ public class PrivatebinDataAnalyzer
/** /**
* Probe. * Probe.
* *
* @param httpAccessLogs * @param dataDirectory
* the source * the data directory
* @return the path counters
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred. * Signals that an I/O exception has occurred.
* @throws StatoolInfosException * @throws StatoolInfosException

View file

@ -44,12 +44,17 @@ public class PrivatebinProber
/** /**
* Probe. * Probe.
* *
* @param logs * @param httpLogs
* the logs * the http logs
* @param databaseConfig * @param httpLogRegex
* the database config * the http log regex
* @throws StatoolInfosException * @param dataPath
* the data path
* @return the path counters
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
* @throws StatoolInfosException
* the statool infos exception
*/ */
public static PathCounters probe(final String httpLogs, final String httpLogRegex, final File dataPath) throws IOException, StatoolInfosException public static PathCounters probe(final String httpLogs, final String httpLogRegex, final File dataPath) throws IOException, StatoolInfosException
{ {