Menu

#17 WIM archive format contains Udf comment

closed-fixed
doc (1)
1
2014-01-27
2014-01-22
No

The comment that is supposed to be ment for the WIM format in net/sf/sevenzipjbinding/ArchiveFormat.java contains Udf isntead of Wim.
The WIM code part is also not aligned correctly when comparing it to the rest of the archive formats.

The wrong "Udf" comment also shows up in the documentation: http://sevenzipjbind.sourceforge.net/javadoc/net/sf/sevenzipjbinding/ArchiveFormat.html#WIM

net/sf/sevenzipjbinding/ArchiveFormat.java:

:::java

        /**
         * Udf
         */
        UDF("Udf"),

            /**
     * Udf
     */
    WIM("Wim"),

    /**
     * Xar
     */
        XAR("Xar");

        private String methodName;

        ArchiveFormat(String methodName) {
                this.methodName = methodName;
        }

Discussion

  • Boris Brodski

    Boris Brodski - 2014-01-27

    Thank you!

    Fixed in RW branch (upcoming 9.13-2.00alpha release)

     
  • Boris Brodski

    Boris Brodski - 2014-01-27
    • labels: --> doc
    • status: open --> closed-fixed
    • assigned_to: Boris Brodski
     

Log in to post a comment.