예제 #1
0
파일: Rack.java 프로젝트: KirbyG/scrabble
 /**
  * Deletes the tile in the ith position
  *
  * @param i the position of the tile
  */
 public void delete(int i) {
   super.delete(i);
   fixPositions();
 }