Fixed a potential NullPointerException.

This commit is contained in:
Robert Greene 2004-07-04 04:35:46 +00:00
parent 6c80a79824
commit 5b50976f0d

View File

@ -86,7 +86,7 @@ public class GraphicsFilterAdapter extends FilterAdapter {
}
public void dispose() {
image.dispose();
if (image != null) image.dispose();
}