--- /home/cpdev/src/classpath/javax/swing/DebugGraphics.java	2005-07-02 21:03:59.000000000 +0000
+++ javax/swing/DebugGraphics.java	2005-06-30 05:35:08.000000000 +0000
@@ -404,11 +404,11 @@
   {
     try
       {
-        Thread.sleep(milliseconds);
+	Thread.sleep(milliseconds);
       }
     catch (InterruptedException e)
       {
-        // Ignore this.
+	// Ignore this.
       }
   }
   
@@ -424,13 +424,13 @@
   {
     for (int index = 0; index < (debugFlashCount - 1); ++index)
       {
-        graphics.setColor(color);
-        graphics.drawRect(x, y, width, height);
-        sleep(debugFlashTime);
-
-        graphics.setColor(debugFlashColor);
-        graphics.drawRect(x, y, width, height);
-        sleep(debugFlashTime);
+	graphics.setColor(color);
+	graphics.drawRect(x, y, width, height);
+	sleep(debugFlashTime);
+	
+	graphics.setColor(debugFlashColor);
+	graphics.drawRect(x, y, width, height);
+	sleep(debugFlashTime);
       }
 
     graphics.setColor(color);
@@ -449,13 +449,13 @@
   {
     for (int index = 0; index < (debugFlashCount - 1); ++index)
       {
-        graphics.setColor(color);
-        graphics.fillRect(x, y, width, height);
-        sleep(debugFlashTime);
-
-        graphics.setColor(debugFlashColor);
-        graphics.fillRect(x, y, width, height);
-        sleep(debugFlashTime);
+	graphics.setColor(color);
+	graphics.fillRect(x, y, width, height);
+	sleep(debugFlashTime);
+	
+	graphics.setColor(debugFlashColor);
+	graphics.fillRect(x, y, width, height);
+	sleep(debugFlashTime);
       }
 
     graphics.setColor(color);
@@ -696,13 +696,13 @@
   {
     for (int index = 0; index < (debugFlashCount - 1); ++index)
       {
-        graphics.setColor(color);
-        graphics.drawChars(data, offset, length, x, y);
-        sleep(debugFlashTime);
-
-        graphics.setColor(debugFlashColor);
-        graphics.drawChars(data, offset, length, x, y);
-        sleep(debugFlashTime);
+	graphics.setColor(color);
+	graphics.drawChars(data, offset, length, x, y);
+	sleep(debugFlashTime);
+	
+	graphics.setColor(debugFlashColor);
+	graphics.drawChars(data, offset, length, x, y);
+	sleep(debugFlashTime);
       }
 
     graphics.setColor(color);
