The Shawshank Redemption

public class AndyDuffrain implements Runnable
{
       public Stuff stuff;
        public void run(){
              for(int i = 1; i <= 23; i++)
                     breakWall();
              stuff.clothes = Norton.getClothes();
              stuff.money = Norton.getMoneyFromBank();  
       }
       public void breakWall(){
               if(!Norton.know()){
                       breakWall()
               }
       }
}
Vote up this code0