fix problem parsing dates
This commit is contained in:
parent
7d86a93d52
commit
c5c4059ed4
|
@ -442,7 +442,7 @@ public class PackageCacheManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Date readDate(String s) throws ParseException {
|
private Date readDate(String s) throws ParseException {
|
||||||
SimpleDateFormat sdf = new SimpleDateFormat("EEE, d MMM, yyyy HH:mm:ss Z");
|
SimpleDateFormat sdf = new SimpleDateFormat("EEE, dd MMM, yyyy HH:mm:ss Z");
|
||||||
return sdf.parse(s);
|
return sdf.parse(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<hapi_fhir_version>4.1.0</hapi_fhir_version>
|
<hapi_fhir_version>4.1.0</hapi_fhir_version>
|
||||||
<validator_test_case_version>1.0.21-SNAPSHOT</validator_test_case_version>
|
<validator_test_case_version>1.0.22-SNAPSHOT</validator_test_case_version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<artifactId>org.hl7.fhir.core</artifactId>
|
<artifactId>org.hl7.fhir.core</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue