Merge branch 'BAEL-1599-v2' of https://github.com/eugenp/tutorials into BAEL-1599-v2

This commit is contained in:
Loredana Crusoveanu 2018-03-24 21:33:32 +02:00
commit 017dc92d50
2 changed files with 3 additions and 2 deletions

View File

@ -49,7 +49,7 @@ public class DaylightSavingTimeExamplesTest {
//@formatter:off
System.out.println(String.format(
" Zone ID = %s (%s)\n"
" Zone ID = %s (%s)\n"
+ " RawOffset = %s minutes\n"
+ " DST = %s minutes\n"
+ " -----------------------------------------",

View File

@ -37,7 +37,7 @@ public class DaylightSavingTimeJavaTimeExamplesTest {
private void prettyPrint(ZonedDateTime zdt) {
//@formatter:off
System.out.println(String.format(
" ZonedDateTime = %s\n"
" ZonedDateTime = %s\n"
+ " Zone ID = %s (%s)\n"
+ " RawOffset = %s minutes\n"
+ " -----------------------------------------",
@ -52,4 +52,5 @@ public class DaylightSavingTimeJavaTimeExamplesTest {
System.out.println("Total java.util.TimeZone Id count : " + TimeZone.getAvailableIDs().length);
}
}