return;
}
System.out.println("min,hour,day,month,year "+min+","+hour+","+day+","+month+","+year);
Calendar cal = Calendar.getInstance();
cal.set(year,month,day,hour,min);
Weight weightW = new Weight(weight,cal.getTimeInMillis());
weightV.add(weightW);
JOptionPane.showMessageDialog(this,"Weight Added to Queue\nMust select done to commit","Info",JOptionPane.INFORMATION_MESSAGE);
}