Author: bodewig Date: Tue Jan 14 07:35:03 2014 New Revision: 1557955 URL: http://svn.apache.org/r1557955 Log: bring back javadocs for _internal but make the warning even stronger
Modified: commons/proper/compress/trunk/pom.xml commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/InternalLZWInputStream.java commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/package.html Modified: commons/proper/compress/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/pom.xml?rev=1557955&r1=1557954&r2=1557955&view=diff ============================================================================== --- commons/proper/compress/trunk/pom.xml (original) +++ commons/proper/compress/trunk/pom.xml Tue Jan 14 07:35:03 2014 @@ -253,7 +253,6 @@ These include: bzip2, gzip, pack200, lzm <head>This class is thread-safe</head> </tag> </tags> - <excludePackageNames>*._internal</excludePackageNames> </configuration> </plugin> <plugin> Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java?rev=1557955&r1=1557954&r2=1557955&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/ZCompressorInputStream.java Tue Jan 14 07:35:03 2014 @@ -64,7 +64,7 @@ public class ZCompressorInputStream exte * {@inheritDoc} * <p><strong>This method is only protected for technical reasons * and is not part of Commons Compress' published API. It may - * change without warning.</strong></p> + * change or disappear without warning.</strong></p> */ @Override protected int readNextCode() throws IOException { @@ -95,7 +95,7 @@ public class ZCompressorInputStream exte * {@inheritDoc} * <p><strong>This method is only protected for technical reasons * and is not part of Commons Compress' published API. It may - * change without warning.</strong></p> + * change or disappear without warning.</strong></p> */ @Override protected int addEntry(int previousCode, byte character) throws IOException { @@ -112,7 +112,7 @@ public class ZCompressorInputStream exte * {@inheritDoc} * <p><strong>This method is only protected for technical reasons * and is not part of Commons Compress' published API. It may - * change without warning.</strong></p> + * change or disappear without warning.</strong></p> */ @Override protected int decompressNextSymbol() throws IOException { Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/InternalLZWInputStream.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/InternalLZWInputStream.java?rev=1557955&r1=1557954&r2=1557955&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/InternalLZWInputStream.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/InternalLZWInputStream.java Tue Jan 14 07:35:03 2014 @@ -24,12 +24,13 @@ import java.io.InputStream; import org.apache.commons.compress.compressors.CompressorInputStream; /** - * Base-class for traditional Unix ".Z" compression and the - * Unshrinking method of ZIP archive. + * <strong>This class is only public for technical reasons and is not + * part of Commons Compress' published API - it may change or + * disappear without warning.</strong> + * + * <p>Base-class for traditional Unix ".Z" compression and the + * Unshrinking method of ZIP archive.</p> * - * <p><strong>This class is only public for technical reasons and is - * not part of Commons Compress' published API. It may change without - * warning.</strong></p> * @NotThreadSafe * @since 1.7 */ Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/package.html URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/package.html?rev=1557955&r1=1557954&r2=1557955&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/package.html (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/compressors/z/_internal_/package.html Tue Jan 14 07:35:03 2014 @@ -18,8 +18,8 @@ --> <body> - <p>Contains classes used by Commons Compress - internally. <strong>This package is not part of Commons Compress' - published API. It may change without warning.</strong></p> + <p><strong>This package is not part of Commons Compress' published + API. It may change without warning.</strong> Contains classes + used by Commons Compress internally.</p> </body> </html>