* if there are any outstanding snipes.
*/
public void shutdown() {
try {
if (AuctionEntry.snipedCount() != 0) {
OptionUI oui = new OptionUI();
// Use the right parent! FIXME -- mrs: 17-February-2003 23:53
int rval = oui.promptWithCheckbox(null, "There are outstanding snipes that will not be able to fire while " + Constants.PROGRAM_NAME +
" is not running. Are you sure you want to quit?", "Pending Snipes confirmation",
"prompt.snipe_quit");
if (rval == JOptionPane.CANCEL_OPTION) return;
}
} catch(Exception e) {