Skip to content

Commit 5633887

Browse files
authored
Merge pull request #48 from cquiroz/fix_tests
Fix for zone tests
2 parents 3548064 + e6741a4 commit 5633887

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

changes.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,17 @@
33
<document>
44
<properties>
55
<title>Changes</title>
6+
<author>Carlos Quiroz (Scala port and maintainer)</author>
67
<author>Simon Ochsenreither (Scala port)</author>
78
<author>Stephen Colebourne (Java version)</author>
89
</properties>
910
<body>
11+
<!-- types are add, fix, remove, update -->
12+
<release version="2.0.0-M11" date="2017-04-16" description="v2.0.0-M11">
13+
<action dev="alonsodomin" type="update" >
14+
Support localized timezone names
15+
</action>
16+
</release>
1017
<!-- types are add, fix, remove, update -->
1118
<release version="2.0.0-M10" date="2017-04-16" description="v2.0.0-M10">
1219
<action dev="cquiroz" type="update" >

js/src/main/scala/org/threeten/bp/zone/TzdbZoneRulesProvider.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ final class TzdbZoneRulesProvider extends ZoneRulesProvider {
2020
override protected def provideZoneIds: java.util.Set[String] = {
2121
val zones = new java.util.HashSet((stdZonesMap.keySet ++ fixedZonesMap.keySet ++ zoneLinks.keySet).asJava)
2222
// I'm not totallly sure the reason why but TTB removes these ZoneIds
23-
zones.remove("UTC")
24-
zones.remove("GMT")
23+
// zones.remove("UTC")
24+
// zones.remove("GMT")
2525
zones.remove("GMT0")
2626
zones.remove("GMT+0")
2727
zones.remove("GMT-0")

0 commit comments

Comments
 (0)