Checked in patch from Stefan Matthias Aust:

* Don't call static methods as instance methods
* Remove unused imports
* Remove variables that are never read
This commit is contained in:
hns 2003-07-08 13:52:36 +00:00
parent cc29ebbaf4
commit 2f39d4f908
27 changed files with 64 additions and 95 deletions

View file

@ -116,7 +116,6 @@ public class GifEncoder extends ImageEncoder
int index = 0;
for ( int row = 0; row < height; ++row )
{
int rowOffset = row * width;
for ( int col = 0; col < width; ++col )
{
int rgb = rgbPixels[row][col];