You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2016/01/01 09:13:06 UTC

[2/3] groovy git commit: remove duplicated apache license header

remove duplicated apache license header


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/af8a91b0
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/af8a91b0
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/af8a91b0

Branch: refs/heads/master
Commit: af8a91b05dcdcb8a922ebd65402f8c6efd2c3dc5
Parents: a3f7316
Author: pascalschumacher <pa...@gmx.net>
Authored: Fri Jan 1 09:12:05 2016 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Fri Jan 1 09:12:05 2016 +0100

----------------------------------------------------------------------
 src/spec/test-resources/aftervisitclass.groovy | 16 ----------------
 src/spec/test-resources/selfcheck.groovy       | 17 -----------------
 src/spec/test/BaseScriptSpecTest.groovy        | 16 ----------------
 3 files changed, 49 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/af8a91b0/src/spec/test-resources/aftervisitclass.groovy
----------------------------------------------------------------------
diff --git a/src/spec/test-resources/aftervisitclass.groovy b/src/spec/test-resources/aftervisitclass.groovy
index 1471f28..6417770 100644
--- a/src/spec/test-resources/aftervisitclass.groovy
+++ b/src/spec/test-resources/aftervisitclass.groovy
@@ -18,22 +18,6 @@
  */
 import org.codehaus.groovy.ast.ClassNode
 
-/*
- * Copyright 2003-2015 the original author or authors.
- *
- * Licensed 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.
- */
-
 // tag::event[]
 afterVisitClass { ClassNode classNode ->
     def name = classNode.nameWithoutPackage

http://git-wip-us.apache.org/repos/asf/groovy/blob/af8a91b0/src/spec/test-resources/selfcheck.groovy
----------------------------------------------------------------------
diff --git a/src/spec/test-resources/selfcheck.groovy b/src/spec/test-resources/selfcheck.groovy
index f7a57de..0e0150b 100644
--- a/src/spec/test-resources/selfcheck.groovy
+++ b/src/spec/test-resources/selfcheck.groovy
@@ -20,23 +20,6 @@ import org.codehaus.groovy.ast.ClassNode
 import org.codehaus.groovy.transform.stc.StaticTypeCheckingVisitor
 import org.codehaus.groovy.transform.stc.TypeCheckingContext
 
-/*
- * Copyright 2003-2015 the original author or authors.
- *
- * Licensed 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.
- */
-
-
 assert context instanceof TypeCheckingContext
 assert typeCheckingVisitor instanceof StaticTypeCheckingVisitor
 assert generatedMethods instanceof Set

http://git-wip-us.apache.org/repos/asf/groovy/blob/af8a91b0/src/spec/test/BaseScriptSpecTest.groovy
----------------------------------------------------------------------
diff --git a/src/spec/test/BaseScriptSpecTest.groovy b/src/spec/test/BaseScriptSpecTest.groovy
index e680969..7b35d4a 100644
--- a/src/spec/test/BaseScriptSpecTest.groovy
+++ b/src/spec/test/BaseScriptSpecTest.groovy
@@ -18,22 +18,6 @@
  */
 import groovy.transform.CompileStatic
 
-/*
- * Copyright 2003-2015 the original author or authors.
- *
- * Licensed 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.
- */
-
 @CompileStatic
 class BaseScriptSpecTest extends GroovyTestCase {
     void testSimpleScript() {