Index: java/util/zip/OutputWindow.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/zip/OutputWindow.java,v retrieving revision 1.3 diff -u -b -B -r1.3 OutputWindow.java --- java/util/zip/OutputWindow.java 22 Jan 2002 22:27:02 -0000 1.3 +++ java/util/zip/OutputWindow.java 15 Jul 2004 13:33:41 -0000 @@ -37,20 +37,19 @@ package java.util.zip; -/* +/** * Contains the output from the Inflation process. * * We need to have a window so that we can refer backwards into the output stream * to repeat stuff. * * @author John Leuner - * @since JDK 1.1 + * @since 1.1 */ - class OutputWindow { - private final int WINDOW_SIZE = 1 << 15; - private final int WINDOW_MASK = WINDOW_SIZE - 1; + private static final int WINDOW_SIZE = 1 << 15; + private static final int WINDOW_MASK = WINDOW_SIZE - 1; private byte[] window = new byte[WINDOW_SIZE]; //The window is 2^15 bytes private int window_end = 0;