--- indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipFacade.java.orig 2017-01-20 10:00:27.930024271 +0000 +++ indexer-core/src/main/java/org/apache/maven/index/util/zip/ZipFacade.java 2017-01-20 10:00:55.415708439 +0000 @@ -52,14 +52,7 @@ { if ( targetFile.isFile() ) { - if ( TRUEZIP_AVAILABLE && targetFile.length() > JAVA_ZIPFILE_SIZE_THRESHOLD ) - { - return new TrueZipZipFileHandle( targetFile ); - } - else - { return new JavaZipFileHandle( targetFile ); - } } throw new IOException( "The targetFile should point to an existing ZIP file!" );