Fix javadoc
diff --git a/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipDirectory.java b/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipDirectory.java
index a74383c..a0bdf9b 100644
--- a/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipDirectory.java
+++ b/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipDirectory.java
@@ -60,7 +60,6 @@
 
   /**
    * This constructor creates the root of the zip.
-   * @param file
    * @param fs
    * @param parent
    * @throws MalformedURLException
@@ -174,8 +173,9 @@
    * This method works out if the provided entry is inside this directory. It
    * returns false if it is not, or if it is in a sub-directory.
    *
+   * @param parentDir
    * @param possibleEntry
-   * @param whether files in subdirectories are to be included
+   * @param allowSubDirs
    * @return true if it is in this directory.
    */
   protected static boolean isInDir(String parentDir, ZipEntry possibleEntry, boolean allowSubDirs)
diff --git a/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipFileImpl.java b/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipFileImpl.java
index 9ebbee4..a0ebef5 100644
--- a/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipFileImpl.java
+++ b/util/src/main/java/org/apache/aries/util/filesystem/impl/ZipFileImpl.java
@@ -87,8 +87,7 @@
    * This is called to construct the root directory of the zip.
    *
    * @param zip1 the zip file this represents.
-   * @param fs   the file on the fs.
-   * @param rootName the name of this zipfile relative to the IFile filesystem root
+   * @param parent
    * @throws MalformedURLException
    */
   protected ZipFileImpl(File zip1, IDirectory parent) throws MalformedURLException