Skip to content

Commit 150c59c

Browse files
authored
Updates
1 parent e8d3a1c commit 150c59c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SimpleDateFormatExamples.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public static void main(String[] args) {
1111
System.out.println(sdf1.format(date));
1212

1313
//Thursday 23 January 2020 22:17:54
14-
SimpleDateFormat sdf2 = new SimpleDateFormat("EEEEE DD MMMMM yyyy HH:mm:ss");
14+
SimpleDateFormat sdf2 = new SimpleDateFormat("EEEEE dd MMMMM yyyy HH:mm:ss");
1515
System.out.println(sdf2.format(date));
1616

1717
//Thu, 23 Jan 2020 22:20:46 MSK

0 commit comments

Comments
 (0)