Merged gcj-eclipse branch to trunk.

From-SVN: r120621
This commit is contained in:
Tom Tromey 2007-01-09 19:58:05 +00:00
parent c648dedbde
commit 97b8365caf
17478 changed files with 606493 additions and 100744 deletions

View file

@ -1,5 +1,5 @@
/* DeflaterEngine.java --
Copyright (C) 2001, 2004 Free Software Foundation, Inc.
Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -92,7 +92,7 @@ class DeflaterEngine implements DeflaterConstants
private byte[] inputBuf;
/** The total bytes of input read. */
private int totalIn;
private long totalIn;
/** The offset into inputBuf, where input data starts. */
private int inputOff;
@ -163,7 +163,7 @@ class DeflaterEngine implements DeflaterConstants
return chksum;
}
public final int getTotalIn()
public final long getTotalIn()
{
return totalIn;
}