From be4c1d66499a3b691863fc869dbc8064330ebee6 Mon Sep 17 00:00:00 2001 From: Ethan Roseman <eroseman@basistech.com> Date: Fri, 9 Aug 2019 10:28:37 -0400 Subject: [PATCH] Javadoc improvements --- .../modules/embeddedfileextractor/SevenZipExtractor.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/embeddedfileextractor/SevenZipExtractor.java b/Core/src/org/sleuthkit/autopsy/modules/embeddedfileextractor/SevenZipExtractor.java index eff9240c92..3523048c57 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/embeddedfileextractor/SevenZipExtractor.java +++ b/Core/src/org/sleuthkit/autopsy/modules/embeddedfileextractor/SevenZipExtractor.java @@ -403,10 +403,9 @@ private void makeLocalDirectories(String uniqueArchiveFileName) { /** * Get the path in the archive of the specified item * - * @param item - the item to get the path for - * @param itemNumber - the item number to help provide uniqueness to the - * path - * @param archiveFile - the archive file the item exists in + * @param archive - the archive to get the path for + * @param inArchiveItemIndex - the item index to help provide uniqueness to the path + * @param archiveFile - the archive file the item exists in * * @return a string representing the path to the item in the archive * @@ -1128,7 +1127,6 @@ private class UnpackedTree { * @param localPathRoot Path in module output folder that files will be * saved to * @param archiveFile Archive file being extracted - * @param fileManager */ UnpackedTree(String localPathRoot, AbstractFile archiveFile) { this.rootNode = new UnpackedNode(); -- GitLab