summaryrefslogtreecommitdiff
path: root/javax/swing/CellRendererPane.java
diff options
context:
space:
mode:
authorRoman Kennke <roman@kennke.org>2005-06-20 14:35:52 +0000
committerRoman Kennke <roman@kennke.org>2005-06-20 14:35:52 +0000
commitef6de9ba20b3a5e49e4805d39311982756fa066f (patch)
treebaa7221f3417ccd0fdf362c2cb39de7f91ca2cea /javax/swing/CellRendererPane.java
parent45def5a55fd62099875c0ab89f19e8a951dcd1c5 (diff)
downloadclasspath-ef6de9ba20b3a5e49e4805d39311982756fa066f.tar.gz
Reformatted source files to better match our coding style.
Diffstat (limited to 'javax/swing/CellRendererPane.java')
-rw-r--r--javax/swing/CellRendererPane.java9
1 files changed, 2 insertions, 7 deletions
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()
/**