Skip to content

Commit

Permalink
date formater bug is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
skarahoda committed Sep 6, 2015
1 parent 9094452 commit 216ea57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/scheduler/gui/PanelTimeTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ protected Meeting createMeeting(JTable source) {
String day = source.getColumnName(column);
day = day.toUpperCase();
String[] times = timeInterval.split("-");
DateFormat format = new SimpleDateFormat("h:mm");
DateFormat format = new SimpleDateFormat("H:mm");
Date start = null;
Date end = null;
try {
Expand Down

0 comments on commit 216ea57

Please sign in to comment.