[Mndiff-dev] [mndiff]: r14 - trunk/TicTacToe/TicTacToe.java
michael
subversion at mplayerhq.hu
Fri May 11 02:45:21 CEST 2007
Author: michael
Date: Fri May 11 02:45:21 2007
New Revision: 14
Log:
fix indention
yeah dont ask why ive not fixed that in the previous commit, i guess the lame
{} placement style confsed me
Modified:
trunk/TicTacToe/TicTacToe.java
Modified: trunk/TicTacToe/TicTacToe.java
==============================================================================
--- trunk/TicTacToe/TicTacToe.java (original)
+++ trunk/TicTacToe/TicTacToe.java Fri May 11 02:45:21 2007
@@ -45,13 +45,13 @@ public class TicTacToe extends JApplet i
public void init()
{
- ClassLoader c= getClass().getClassLoader();
- icon[0]= new ImageIcon( c.getResource("empty.jpg" ) );
- icon[1]= new ImageIcon( c.getResource("x.jpg" ) );
- icon[2]= new ImageIcon( c.getResource("o.jpg" ) );
- icon[3]= new ImageIcon( c.getResource("emptyL.jpg") );
- icon[4]= new ImageIcon( c.getResource("xL.jpg" ) );
- icon[5]= new ImageIcon( c.getResource("oL.jpg" ) );
+ ClassLoader c= getClass().getClassLoader();
+ icon[0]= new ImageIcon( c.getResource("empty.jpg" ) );
+ icon[1]= new ImageIcon( c.getResource("x.jpg" ) );
+ icon[2]= new ImageIcon( c.getResource("o.jpg" ) );
+ icon[3]= new ImageIcon( c.getResource("emptyL.jpg") );
+ icon[4]= new ImageIcon( c.getResource("xL.jpg" ) );
+ icon[5]= new ImageIcon( c.getResource("oL.jpg" ) );
Container cp= getContentPane();
More information about the Mndiff-dev
mailing list