Repository: incubator-groovy Updated Branches: refs/heads/GROOVY_2_4_X 8edfbbc75 -> 60bebe1d6
GROOVY-7462: Dates factory fix when initializing miliseconds field (closes #39) Clean-up: Add Apache license header Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/60bebe1d Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/60bebe1d Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/60bebe1d Branch: refs/heads/GROOVY_2_4_X Commit: 60bebe1d65fbca659d405c60705c2cf06ed0a255 Parents: 8edfbbc Author: pascalschumacher <pascalschumac...@gmx.net> Authored: Thu Jun 11 19:11:50 2015 +0200 Committer: pascalschumacher <pascalschumac...@gmx.net> Committed: Thu Jun 11 19:12:34 2015 +0200 ---------------------------------------------------------------------- .../groovy/groovy/json/internal/DatesTest.groovy | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/60bebe1d/subprojects/groovy-json/src/test/groovy/groovy/json/internal/DatesTest.groovy ---------------------------------------------------------------------- diff --git a/subprojects/groovy-json/src/test/groovy/groovy/json/internal/DatesTest.groovy b/subprojects/groovy-json/src/test/groovy/groovy/json/internal/DatesTest.groovy index 1bb97f5..abc31c0 100644 --- a/subprojects/groovy-json/src/test/groovy/groovy/json/internal/DatesTest.groovy +++ b/subprojects/groovy-json/src/test/groovy/groovy/json/internal/DatesTest.groovy @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ package groovy.json.internal