Skip to content

Commit e93c801

Browse files
committed
Fix javadoc
1 parent aea7d90 commit e93c801

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

util/src/main/java/org/apache/aries/util/filesystem/impl/ZipDirectory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ public ZipDirectory(File zip1, ZipEntry entry1, ZipDirectory parent, ZipCloseabl
6060

6161
/**
6262
* This constructor creates the root of the zip.
63-
* @param file
6463
* @param fs
6564
* @param parent
6665
* @throws MalformedURLException
@@ -174,8 +173,9 @@ private List<IFile> listFiles(boolean includeFilesInNestedSubdirs)
174173
* This method works out if the provided entry is inside this directory. It
175174
* returns false if it is not, or if it is in a sub-directory.
176175
*
176+
* @param parentDir
177177
* @param possibleEntry
178-
* @param whether files in subdirectories are to be included
178+
* @param allowSubDirs
179179
* @return true if it is in this directory.
180180
*/
181181
protected static boolean isInDir(String parentDir, ZipEntry possibleEntry, boolean allowSubDirs)

util/src/main/java/org/apache/aries/util/filesystem/impl/ZipFileImpl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ public ZipFileImpl(File zip1, ZipEntry entry1, ZipDirectory parent1, ZipCloseabl
8787
* This is called to construct the root directory of the zip.
8888
*
8989
* @param zip1 the zip file this represents.
90-
* @param fs the file on the fs.
91-
* @param rootName the name of this zipfile relative to the IFile filesystem root
90+
* @param parent
9291
* @throws MalformedURLException
9392
*/
9493
protected ZipFileImpl(File zip1, IDirectory parent) throws MalformedURLException

0 commit comments

Comments
 (0)