0403-057 Syntax error at line 52 : `)' is not expected.

Can someone please tell me wht is wrong with the following peice of code?

I keep getting the following error -

0403-057 Syntax error at line 52 : `)' is not expected.

case "${option_count}" in
  1)	java -Xms256m -Xmx1536m "${APPLNAME}" "${ACTION_TYPE}" > "${LOGFILE}" 2> "${ERROR_LOGFILE}";
  2)    java -Xms256m -Xmx1536m "${APPLNAME}" "${TABLE_NAME}" "${ACTION_TYPE}" > "${LOGFILE}" 2> "${ERROR_LOGFILE}";
  *)	usage;
	exit 1;;
esac

Each ) statement should end with ;; not just one ;

case "${option_count}" in
  1)	java -Xms256m -Xmx1536m "${APPLNAME}" "${ACTION_TYPE}" > "${LOGFILE}" 2> "${ERROR_LOGFILE}"
   ;;
  2)    java -Xms256m -Xmx1536m "${APPLNAME}" "${TABLE_NAME}" "${ACTION_TYPE}" > "${LOGFILE}" 2> "${ERROR_LOGFILE}"
   ;;
  *)	usage;
	exit 1;;
esac

Thanks!! that worked!!