From ef6de9ba20b3a5e49e4805d39311982756fa066f Mon Sep 17 00:00:00 2001 From: Roman Kennke Date: Mon, 20 Jun 2005 14:35:52 +0000 Subject: Reformatted source files to better match our coding style. --- javax/swing/CellRendererPane.java | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'javax/swing/CellRendererPane.java') diff --git a/javax/swing/CellRendererPane.java b/javax/swing/CellRendererPane.java index 0ef270bf8..fa7f06d3b 100644 --- a/javax/swing/CellRendererPane.java +++ b/javax/swing/CellRendererPane.java @@ -42,8 +42,6 @@ import java.awt.Component; import java.awt.Container; import java.awt.Graphics; import java.awt.Rectangle; -import java.io.IOException; -import java.io.ObjectOutputStream; import javax.accessibility.Accessible; import javax.accessibility.AccessibleContext; @@ -216,10 +214,9 @@ public class CellRendererPane * @param h the height of the components drawing area */ public void paintComponent(Graphics graphics, Component c, - Container p, int x, int y, int w, int h) { - + Container p, int x, int y, int w, int h) + { paintComponent(graphics, c, p, x, y, w, h, false); - } // paintComponent() /** @@ -237,9 +234,7 @@ public class CellRendererPane public void paintComponent(Graphics graphics, Component c, Container p, Rectangle r) { - paintComponent(graphics, c, p, r.x, r.y, r.width, r.height); - } // paintComponent() /** -- cgit v1.2.1