Reviewed Javadoc.

This commit is contained in:
Christian P. MOMON 2021-04-25 13:18:48 +02:00
parent 6e3b0be2e3
commit 835281210b
4 changed files with 23 additions and 21 deletions

View File

@ -61,8 +61,6 @@ public final class Logar
* *
* @param source * @param source
* the source * the source
* @param target
* the target
*/ */
public static void anonymize(final File source) public static void anonymize(final File source)
{ {
@ -74,8 +72,8 @@ public final class Logar
* *
* @param source * @param source
* the source * the source
* @param target * @param mapFile
* the target * the map file
*/ */
public static void anonymize(final File source, final File mapFile) public static void anonymize(final File source, final File mapFile)
{ {
@ -421,11 +419,12 @@ public final class Logar
} }
/** /**
* Check sort for access files. * Check sort file.
* *
* @param source * @param file
* the source * the file
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static void checkSortFile(final File file) throws IOException public static void checkSortFile(final File file) throws IOException
{ {
@ -510,10 +509,10 @@ public final class Logar
} }
/** /**
* Check concate on file. * Test concate file.
* *
* @param source * @param file
* the source * the file
*/ */
public static void testConcateFile(final File file) public static void testConcateFile(final File file)
{ {

View File

@ -108,8 +108,8 @@ public final class AnonMapFile
/** /**
* Save. * Save.
* *
* @param source * @param target
* the source * the target
* @param map * @param map
* the map * the map
*/ */

View File

@ -65,8 +65,6 @@ public final class Anonymizer
* *
* @param source * @param source
* the source * the source
* @param target
* the target
*/ */
public void anonymize(final File source) public void anonymize(final File source)
{ {

View File

@ -184,12 +184,16 @@ public final class LogFile
} }
/** /**
* Save access log. * Save logs.
* *
* @param source * @param target
* the source * the target
* @throws IOException * @param logs
* the logs
* @throws FileNotFoundException * @throws FileNotFoundException
* the file not found exception
* @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static void saveLogs(final File target, final Logs logs) throws FileNotFoundException, IOException public static void saveLogs(final File target, final Logs logs) throws FileNotFoundException, IOException
{ {
@ -217,11 +221,12 @@ public final class LogFile
} }
/** /**
* Sort access log. * Sort log file.
* *
* @param target * @param file
* the target * the file
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static void sortLogFile(final File file) throws IOException public static void sortLogFile(final File file) throws IOException
{ {