You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2014/04/12 18:52:11 UTC

svn commit: r905942 [8/38] - in /websites/production/commons/content/proper/commons-compress: ./ apidocs/ apidocs/org/apache/commons/compress/archivers/ apidocs/org/apache/commons/compress/archivers/ar/ apidocs/org/apache/commons/compress/archivers/ar/...

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ArchiveOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ArchiveOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ArchiveOutputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ArchiveStreamFactory.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ArchiveStreamFactory.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ArchiveStreamFactory.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/Lister.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/Lister.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/Lister.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/StreamingNotSupportedException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/StreamingNotSupportedException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/StreamingNotSupportedException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
@@ -392,7 +392,7 @@
 <span class="sourceLineNo">384</span>    private ArArchiveEntry readGNUStringTable(byte[] length) throws IOException {<a name="line.384"></a>
 <span class="sourceLineNo">385</span>        int bufflen = asInt(length); // Assume length will fit in an int<a name="line.385"></a>
 <span class="sourceLineNo">386</span>        namebuffer = new byte[bufflen];<a name="line.386"></a>
-<span class="sourceLineNo">387</span>        int read = read(namebuffer, 0, bufflen);<a name="line.387"></a>
+<span class="sourceLineNo">387</span>        int read = IOUtils.readFully(this, namebuffer, 0, bufflen);<a name="line.387"></a>
 <span class="sourceLineNo">388</span>        if (read != bufflen){<a name="line.388"></a>
 <span class="sourceLineNo">389</span>            throw new IOException("Failed to read complete // record: expected="<a name="line.389"></a>
 <span class="sourceLineNo">390</span>                                  + bufflen + " read=" + read);<a name="line.390"></a>

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.HostOs.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.HostOs.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.HostOs.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioArchiveOutputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioConstants.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioConstants.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/cpio/CpioConstants.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.COMPRESSION_TYPE.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.COMPRESSION_TYPE.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.COMPRESSION_TYPE.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.SEGMENT_TYPE.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.SEGMENT_TYPE.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.SEGMENT_TYPE.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveConstants.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.PERMISSION.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.PERMISSION.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.PERMISSION.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.TYPE.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.TYPE.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.TYPE.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveSummary.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveSummary.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/DumpArchiveSummary.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/InvalidFormatException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/InvalidFormatException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/InvalidFormatException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/ShortFileException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/ShortFileException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/ShortFileException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/UnrecognizedFormatException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/UnrecognizedFormatException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/UnrecognizedFormatException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/dump/UnsupportedCompressionAlgorithmException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/jar/JarArchiveOutputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZFile.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZFile.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZFile.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZMethod.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZMethod.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZMethod.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZMethodConfiguration.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZMethodConfiguration.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZMethodConfiguration.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZOutputFile.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZOutputFile.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/sevenz/SevenZOutputFile.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
@@ -426,7 +426,7 @@
 <span class="sourceLineNo">418</span>                            String keyword = coll.toString(CharsetNames.UTF_8);<a name="line.418"></a>
 <span class="sourceLineNo">419</span>                            // Get rest of entry<a name="line.419"></a>
 <span class="sourceLineNo">420</span>                            byte[] rest = new byte[len - read];<a name="line.420"></a>
-<span class="sourceLineNo">421</span>                            int got = i.read(rest);<a name="line.421"></a>
+<span class="sourceLineNo">421</span>                            int got = IOUtils.readFully(i, rest);<a name="line.421"></a>
 <span class="sourceLineNo">422</span>                            if (got != len - read){<a name="line.422"></a>
 <span class="sourceLineNo">423</span>                                throw new IOException("Failed to read "<a name="line.423"></a>
 <span class="sourceLineNo">424</span>                                                      + "Paxheader. Expected "<a name="line.424"></a>

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarConstants.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarConstants.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarConstants.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarUtils.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/tar/TarUtils.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/AbstractUnicodeExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/AbstractUnicodeExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/AbstractUnicodeExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/AsiExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/AsiExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/AsiExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.UnparseableExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.UnparseableExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.UnparseableExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/GeneralPurposeBit.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/GeneralPurposeBit.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/GeneralPurposeBit.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/JarMarker.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/JarMarker.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/JarMarker.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnicodeCommentExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnicodeCommentExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnicodeCommentExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnicodePathExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnicodePathExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnicodePathExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnixStat.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnixStat.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnixStat.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnparseableExtraFieldData.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnparseableExtraFieldData.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnparseableExtraFieldData.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnrecognizedExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnrecognizedExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnrecognizedExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnsupportedZipFeatureException.Feature.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnsupportedZipFeatureException.Feature.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnsupportedZipFeatureException.Feature.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnsupportedZipFeatureException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnsupportedZipFeatureException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/UnsupportedZipFeatureException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/X5455_ExtendedTimestamp.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/X7875_NewUnix.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/X7875_NewUnix.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/X7875_NewUnix.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64ExtendedInformationExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64ExtendedInformationExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64ExtendedInformationExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64Mode.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64Mode.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64Mode.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64RequiredException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64RequiredException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/Zip64RequiredException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveEntry.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.UnicodeExtraFieldPolicy.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.UnicodeExtraFieldPolicy.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.UnicodeExtraFieldPolicy.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEightByteInteger.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEightByteInteger.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEightByteInteger.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEncoding.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEncoding.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEncoding.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipEncodingHelper.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipExtraField.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipExtraField.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipExtraField.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipFile.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipFile.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipFile.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipLong.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipLong.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipLong.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipMethod.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipMethod.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipMethod.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipShort.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipShort.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipShort.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipUtil.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipUtil.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/archivers/zip/ZipUtil.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSet.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSet.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSet.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSetPerformer.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSetPerformer.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSetPerformer.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSetResults.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSetResults.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/changes/ChangeSetResults.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorException.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorException.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorException.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorInputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorInputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorInputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorOutputStream.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorOutputStream.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorOutputStream.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">

Modified: websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorStreamFactory.html
==============================================================================
--- websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorStreamFactory.html (original)
+++ websites/production/commons/content/proper/commons-compress/apidocs/src-html/org/apache/commons/compress/compressors/CompressorStreamFactory.html Sat Apr 12 16:51:56 2014
@@ -1,5 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="de">
+<html lang="en">
 <head>
 <title>Source code</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
@@ -187,113 +187,117 @@
 <span class="sourceLineNo">179</span>                return new FramedSnappyCompressorInputStream(in);<a name="line.179"></a>
 <span class="sourceLineNo">180</span>            }<a name="line.180"></a>
 <span class="sourceLineNo">181</span><a name="line.181"></a>
-<span class="sourceLineNo">182</span>        } catch (IOException e) {<a name="line.182"></a>
-<span class="sourceLineNo">183</span>            throw new CompressorException("Failed to detect Compressor from InputStream.", e);<a name="line.183"></a>
-<span class="sourceLineNo">184</span>        }<a name="line.184"></a>
+<span class="sourceLineNo">182</span>            if (ZCompressorInputStream.matches(signature, signatureLength)) {<a name="line.182"></a>
+<span class="sourceLineNo">183</span>                return new ZCompressorInputStream(in);<a name="line.183"></a>
+<span class="sourceLineNo">184</span>            }<a name="line.184"></a>
 <span class="sourceLineNo">185</span><a name="line.185"></a>
-<span class="sourceLineNo">186</span>        throw new CompressorException("No Compressor found for the stream signature.");<a name="line.186"></a>
-<span class="sourceLineNo">187</span>    }<a name="line.187"></a>
-<span class="sourceLineNo">188</span><a name="line.188"></a>
-<span class="sourceLineNo">189</span>    /**<a name="line.189"></a>
-<span class="sourceLineNo">190</span>     * Create a compressor input stream from a compressor name and an input stream.<a name="line.190"></a>
-<span class="sourceLineNo">191</span>     * <a name="line.191"></a>
-<span class="sourceLineNo">192</span>     * @param name of the compressor, i.e. "gz", "bzip2", "xz",<a name="line.192"></a>
-<span class="sourceLineNo">193</span>     *        "lzma", "snappy-raw", "snappy-framed", "pack200", "z"<a name="line.193"></a>
-<span class="sourceLineNo">194</span>     * @param in the input stream<a name="line.194"></a>
-<span class="sourceLineNo">195</span>     * @return compressor input stream<a name="line.195"></a>
-<span class="sourceLineNo">196</span>     * @throws CompressorException if the compressor name is not known<a name="line.196"></a>
-<span class="sourceLineNo">197</span>     * @throws IllegalArgumentException if the name or input stream is null<a name="line.197"></a>
-<span class="sourceLineNo">198</span>     */<a name="line.198"></a>
-<span class="sourceLineNo">199</span>    public CompressorInputStream createCompressorInputStream(final String name,<a name="line.199"></a>
-<span class="sourceLineNo">200</span>            final InputStream in) throws CompressorException {<a name="line.200"></a>
-<span class="sourceLineNo">201</span>        if (name == null || in == null) {<a name="line.201"></a>
-<span class="sourceLineNo">202</span>            throw new IllegalArgumentException(<a name="line.202"></a>
-<span class="sourceLineNo">203</span>                    "Compressor name and stream must not be null.");<a name="line.203"></a>
-<span class="sourceLineNo">204</span>        }<a name="line.204"></a>
-<span class="sourceLineNo">205</span><a name="line.205"></a>
-<span class="sourceLineNo">206</span>        try {<a name="line.206"></a>
-<span class="sourceLineNo">207</span><a name="line.207"></a>
-<span class="sourceLineNo">208</span>            if (GZIP.equalsIgnoreCase(name)) {<a name="line.208"></a>
-<span class="sourceLineNo">209</span>                return new GzipCompressorInputStream(in, decompressConcatenated);<a name="line.209"></a>
-<span class="sourceLineNo">210</span>            }<a name="line.210"></a>
+<span class="sourceLineNo">186</span>        } catch (IOException e) {<a name="line.186"></a>
+<span class="sourceLineNo">187</span>            throw new CompressorException("Failed to detect Compressor from InputStream.", e);<a name="line.187"></a>
+<span class="sourceLineNo">188</span>        }<a name="line.188"></a>
+<span class="sourceLineNo">189</span><a name="line.189"></a>
+<span class="sourceLineNo">190</span>        throw new CompressorException("No Compressor found for the stream signature.");<a name="line.190"></a>
+<span class="sourceLineNo">191</span>    }<a name="line.191"></a>
+<span class="sourceLineNo">192</span><a name="line.192"></a>
+<span class="sourceLineNo">193</span>    /**<a name="line.193"></a>
+<span class="sourceLineNo">194</span>     * Create a compressor input stream from a compressor name and an input stream.<a name="line.194"></a>
+<span class="sourceLineNo">195</span>     * <a name="line.195"></a>
+<span class="sourceLineNo">196</span>     * @param name of the compressor, i.e. "gz", "bzip2", "xz",<a name="line.196"></a>
+<span class="sourceLineNo">197</span>     *        "lzma", "snappy-raw", "snappy-framed", "pack200", "z"<a name="line.197"></a>
+<span class="sourceLineNo">198</span>     * @param in the input stream<a name="line.198"></a>
+<span class="sourceLineNo">199</span>     * @return compressor input stream<a name="line.199"></a>
+<span class="sourceLineNo">200</span>     * @throws CompressorException if the compressor name is not known<a name="line.200"></a>
+<span class="sourceLineNo">201</span>     * @throws IllegalArgumentException if the name or input stream is null<a name="line.201"></a>
+<span class="sourceLineNo">202</span>     */<a name="line.202"></a>
+<span class="sourceLineNo">203</span>    public CompressorInputStream createCompressorInputStream(final String name,<a name="line.203"></a>
+<span class="sourceLineNo">204</span>            final InputStream in) throws CompressorException {<a name="line.204"></a>
+<span class="sourceLineNo">205</span>        if (name == null || in == null) {<a name="line.205"></a>
+<span class="sourceLineNo">206</span>            throw new IllegalArgumentException(<a name="line.206"></a>
+<span class="sourceLineNo">207</span>                    "Compressor name and stream must not be null.");<a name="line.207"></a>
+<span class="sourceLineNo">208</span>        }<a name="line.208"></a>
+<span class="sourceLineNo">209</span><a name="line.209"></a>
+<span class="sourceLineNo">210</span>        try {<a name="line.210"></a>
 <span class="sourceLineNo">211</span><a name="line.211"></a>
-<span class="sourceLineNo">212</span>            if (BZIP2.equalsIgnoreCase(name)) {<a name="line.212"></a>
-<span class="sourceLineNo">213</span>                return new BZip2CompressorInputStream(in, decompressConcatenated);<a name="line.213"></a>
+<span class="sourceLineNo">212</span>            if (GZIP.equalsIgnoreCase(name)) {<a name="line.212"></a>
+<span class="sourceLineNo">213</span>                return new GzipCompressorInputStream(in, decompressConcatenated);<a name="line.213"></a>
 <span class="sourceLineNo">214</span>            }<a name="line.214"></a>
 <span class="sourceLineNo">215</span><a name="line.215"></a>
-<span class="sourceLineNo">216</span>            if (XZ.equalsIgnoreCase(name)) {<a name="line.216"></a>
-<span class="sourceLineNo">217</span>                return new XZCompressorInputStream(in, decompressConcatenated);<a name="line.217"></a>
+<span class="sourceLineNo">216</span>            if (BZIP2.equalsIgnoreCase(name)) {<a name="line.216"></a>
+<span class="sourceLineNo">217</span>                return new BZip2CompressorInputStream(in, decompressConcatenated);<a name="line.217"></a>
 <span class="sourceLineNo">218</span>            }<a name="line.218"></a>
 <span class="sourceLineNo">219</span><a name="line.219"></a>
-<span class="sourceLineNo">220</span>            if (LZMA.equalsIgnoreCase(name)) {<a name="line.220"></a>
-<span class="sourceLineNo">221</span>                return new LZMACompressorInputStream(in);<a name="line.221"></a>
+<span class="sourceLineNo">220</span>            if (XZ.equalsIgnoreCase(name)) {<a name="line.220"></a>
+<span class="sourceLineNo">221</span>                return new XZCompressorInputStream(in, decompressConcatenated);<a name="line.221"></a>
 <span class="sourceLineNo">222</span>            }<a name="line.222"></a>
 <span class="sourceLineNo">223</span><a name="line.223"></a>
-<span class="sourceLineNo">224</span>            if (PACK200.equalsIgnoreCase(name)) {<a name="line.224"></a>
-<span class="sourceLineNo">225</span>                return new Pack200CompressorInputStream(in);<a name="line.225"></a>
+<span class="sourceLineNo">224</span>            if (LZMA.equalsIgnoreCase(name)) {<a name="line.224"></a>
+<span class="sourceLineNo">225</span>                return new LZMACompressorInputStream(in);<a name="line.225"></a>
 <span class="sourceLineNo">226</span>            }<a name="line.226"></a>
 <span class="sourceLineNo">227</span><a name="line.227"></a>
-<span class="sourceLineNo">228</span>            if (SNAPPY_RAW.equalsIgnoreCase(name)) {<a name="line.228"></a>
-<span class="sourceLineNo">229</span>                return new SnappyCompressorInputStream(in);<a name="line.229"></a>
+<span class="sourceLineNo">228</span>            if (PACK200.equalsIgnoreCase(name)) {<a name="line.228"></a>
+<span class="sourceLineNo">229</span>                return new Pack200CompressorInputStream(in);<a name="line.229"></a>
 <span class="sourceLineNo">230</span>            }<a name="line.230"></a>
 <span class="sourceLineNo">231</span><a name="line.231"></a>
-<span class="sourceLineNo">232</span>            if (SNAPPY_FRAMED.equalsIgnoreCase(name)) {<a name="line.232"></a>
-<span class="sourceLineNo">233</span>                return new FramedSnappyCompressorInputStream(in);<a name="line.233"></a>
+<span class="sourceLineNo">232</span>            if (SNAPPY_RAW.equalsIgnoreCase(name)) {<a name="line.232"></a>
+<span class="sourceLineNo">233</span>                return new SnappyCompressorInputStream(in);<a name="line.233"></a>
 <span class="sourceLineNo">234</span>            }<a name="line.234"></a>
 <span class="sourceLineNo">235</span><a name="line.235"></a>
-<span class="sourceLineNo">236</span>            if (Z.equalsIgnoreCase(name)) {<a name="line.236"></a>
-<span class="sourceLineNo">237</span>                return new ZCompressorInputStream(in);<a name="line.237"></a>
+<span class="sourceLineNo">236</span>            if (SNAPPY_FRAMED.equalsIgnoreCase(name)) {<a name="line.236"></a>
+<span class="sourceLineNo">237</span>                return new FramedSnappyCompressorInputStream(in);<a name="line.237"></a>
 <span class="sourceLineNo">238</span>            }<a name="line.238"></a>
 <span class="sourceLineNo">239</span><a name="line.239"></a>
-<span class="sourceLineNo">240</span>        } catch (IOException e) {<a name="line.240"></a>
-<span class="sourceLineNo">241</span>            throw new CompressorException(<a name="line.241"></a>
-<span class="sourceLineNo">242</span>                    "Could not create CompressorInputStream.", e);<a name="line.242"></a>
-<span class="sourceLineNo">243</span>        }<a name="line.243"></a>
-<span class="sourceLineNo">244</span>        throw new CompressorException("Compressor: " + name + " not found.");<a name="line.244"></a>
-<span class="sourceLineNo">245</span>    }<a name="line.245"></a>
-<span class="sourceLineNo">246</span><a name="line.246"></a>
-<span class="sourceLineNo">247</span>    /**<a name="line.247"></a>
-<span class="sourceLineNo">248</span>     * Create an compressor output stream from an compressor name and an input stream.<a name="line.248"></a>
-<span class="sourceLineNo">249</span>     * <a name="line.249"></a>
-<span class="sourceLineNo">250</span>     * @param name the compressor name, i.e. "gz", "bzip2", "xz", or "pack200"<a name="line.250"></a>
-<span class="sourceLineNo">251</span>     * @param out the output stream<a name="line.251"></a>
-<span class="sourceLineNo">252</span>     * @return the compressor output stream<a name="line.252"></a>
-<span class="sourceLineNo">253</span>     * @throws CompressorException if the archiver name is not known<a name="line.253"></a>
-<span class="sourceLineNo">254</span>     * @throws IllegalArgumentException if the archiver name or stream is null<a name="line.254"></a>
-<span class="sourceLineNo">255</span>     */<a name="line.255"></a>
-<span class="sourceLineNo">256</span>    public CompressorOutputStream createCompressorOutputStream(<a name="line.256"></a>
-<span class="sourceLineNo">257</span>            final String name, final OutputStream out)<a name="line.257"></a>
-<span class="sourceLineNo">258</span>            throws CompressorException {<a name="line.258"></a>
-<span class="sourceLineNo">259</span>        if (name == null || out == null) {<a name="line.259"></a>
-<span class="sourceLineNo">260</span>            throw new IllegalArgumentException(<a name="line.260"></a>
-<span class="sourceLineNo">261</span>                    "Compressor name and stream must not be null.");<a name="line.261"></a>
-<span class="sourceLineNo">262</span>        }<a name="line.262"></a>
-<span class="sourceLineNo">263</span><a name="line.263"></a>
-<span class="sourceLineNo">264</span>        try {<a name="line.264"></a>
-<span class="sourceLineNo">265</span><a name="line.265"></a>
-<span class="sourceLineNo">266</span>            if (GZIP.equalsIgnoreCase(name)) {<a name="line.266"></a>
-<span class="sourceLineNo">267</span>                return new GzipCompressorOutputStream(out);<a name="line.267"></a>
-<span class="sourceLineNo">268</span>            }<a name="line.268"></a>
+<span class="sourceLineNo">240</span>            if (Z.equalsIgnoreCase(name)) {<a name="line.240"></a>
+<span class="sourceLineNo">241</span>                return new ZCompressorInputStream(in);<a name="line.241"></a>
+<span class="sourceLineNo">242</span>            }<a name="line.242"></a>
+<span class="sourceLineNo">243</span><a name="line.243"></a>
+<span class="sourceLineNo">244</span>        } catch (IOException e) {<a name="line.244"></a>
+<span class="sourceLineNo">245</span>            throw new CompressorException(<a name="line.245"></a>
+<span class="sourceLineNo">246</span>                    "Could not create CompressorInputStream.", e);<a name="line.246"></a>
+<span class="sourceLineNo">247</span>        }<a name="line.247"></a>
+<span class="sourceLineNo">248</span>        throw new CompressorException("Compressor: " + name + " not found.");<a name="line.248"></a>
+<span class="sourceLineNo">249</span>    }<a name="line.249"></a>
+<span class="sourceLineNo">250</span><a name="line.250"></a>
+<span class="sourceLineNo">251</span>    /**<a name="line.251"></a>
+<span class="sourceLineNo">252</span>     * Create an compressor output stream from an compressor name and an input stream.<a name="line.252"></a>
+<span class="sourceLineNo">253</span>     * <a name="line.253"></a>
+<span class="sourceLineNo">254</span>     * @param name the compressor name, i.e. "gz", "bzip2", "xz", or "pack200"<a name="line.254"></a>
+<span class="sourceLineNo">255</span>     * @param out the output stream<a name="line.255"></a>
+<span class="sourceLineNo">256</span>     * @return the compressor output stream<a name="line.256"></a>
+<span class="sourceLineNo">257</span>     * @throws CompressorException if the archiver name is not known<a name="line.257"></a>
+<span class="sourceLineNo">258</span>     * @throws IllegalArgumentException if the archiver name or stream is null<a name="line.258"></a>
+<span class="sourceLineNo">259</span>     */<a name="line.259"></a>
+<span class="sourceLineNo">260</span>    public CompressorOutputStream createCompressorOutputStream(<a name="line.260"></a>
+<span class="sourceLineNo">261</span>            final String name, final OutputStream out)<a name="line.261"></a>
+<span class="sourceLineNo">262</span>            throws CompressorException {<a name="line.262"></a>
+<span class="sourceLineNo">263</span>        if (name == null || out == null) {<a name="line.263"></a>
+<span class="sourceLineNo">264</span>            throw new IllegalArgumentException(<a name="line.264"></a>
+<span class="sourceLineNo">265</span>                    "Compressor name and stream must not be null.");<a name="line.265"></a>
+<span class="sourceLineNo">266</span>        }<a name="line.266"></a>
+<span class="sourceLineNo">267</span><a name="line.267"></a>
+<span class="sourceLineNo">268</span>        try {<a name="line.268"></a>
 <span class="sourceLineNo">269</span><a name="line.269"></a>
-<span class="sourceLineNo">270</span>            if (BZIP2.equalsIgnoreCase(name)) {<a name="line.270"></a>
-<span class="sourceLineNo">271</span>                return new BZip2CompressorOutputStream(out);<a name="line.271"></a>
+<span class="sourceLineNo">270</span>            if (GZIP.equalsIgnoreCase(name)) {<a name="line.270"></a>
+<span class="sourceLineNo">271</span>                return new GzipCompressorOutputStream(out);<a name="line.271"></a>
 <span class="sourceLineNo">272</span>            }<a name="line.272"></a>
 <span class="sourceLineNo">273</span><a name="line.273"></a>
-<span class="sourceLineNo">274</span>            if (XZ.equalsIgnoreCase(name)) {<a name="line.274"></a>
-<span class="sourceLineNo">275</span>                return new XZCompressorOutputStream(out);<a name="line.275"></a>
+<span class="sourceLineNo">274</span>            if (BZIP2.equalsIgnoreCase(name)) {<a name="line.274"></a>
+<span class="sourceLineNo">275</span>                return new BZip2CompressorOutputStream(out);<a name="line.275"></a>
 <span class="sourceLineNo">276</span>            }<a name="line.276"></a>
 <span class="sourceLineNo">277</span><a name="line.277"></a>
-<span class="sourceLineNo">278</span>            if (PACK200.equalsIgnoreCase(name)) {<a name="line.278"></a>
-<span class="sourceLineNo">279</span>                return new Pack200CompressorOutputStream(out);<a name="line.279"></a>
+<span class="sourceLineNo">278</span>            if (XZ.equalsIgnoreCase(name)) {<a name="line.278"></a>
+<span class="sourceLineNo">279</span>                return new XZCompressorOutputStream(out);<a name="line.279"></a>
 <span class="sourceLineNo">280</span>            }<a name="line.280"></a>
 <span class="sourceLineNo">281</span><a name="line.281"></a>
-<span class="sourceLineNo">282</span>        } catch (IOException e) {<a name="line.282"></a>
-<span class="sourceLineNo">283</span>            throw new CompressorException(<a name="line.283"></a>
-<span class="sourceLineNo">284</span>                    "Could not create CompressorOutputStream", e);<a name="line.284"></a>
-<span class="sourceLineNo">285</span>        }<a name="line.285"></a>
-<span class="sourceLineNo">286</span>        throw new CompressorException("Compressor: " + name + " not found.");<a name="line.286"></a>
-<span class="sourceLineNo">287</span>    }<a name="line.287"></a>
-<span class="sourceLineNo">288</span>}<a name="line.288"></a>
+<span class="sourceLineNo">282</span>            if (PACK200.equalsIgnoreCase(name)) {<a name="line.282"></a>
+<span class="sourceLineNo">283</span>                return new Pack200CompressorOutputStream(out);<a name="line.283"></a>
+<span class="sourceLineNo">284</span>            }<a name="line.284"></a>
+<span class="sourceLineNo">285</span><a name="line.285"></a>
+<span class="sourceLineNo">286</span>        } catch (IOException e) {<a name="line.286"></a>
+<span class="sourceLineNo">287</span>            throw new CompressorException(<a name="line.287"></a>
+<span class="sourceLineNo">288</span>                    "Could not create CompressorOutputStream", e);<a name="line.288"></a>
+<span class="sourceLineNo">289</span>        }<a name="line.289"></a>
+<span class="sourceLineNo">290</span>        throw new CompressorException("Compressor: " + name + " not found.");<a name="line.290"></a>
+<span class="sourceLineNo">291</span>    }<a name="line.291"></a>
+<span class="sourceLineNo">292</span>}<a name="line.292"></a>