This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
commit 2cc7c2d89a0adac215821ed7e654ef02b6b35a42 Author: Daniel Sun <[email protected]> AuthorDate: Sun May 10 01:51:20 2026 +0900 Add missing package-info --- .../groovy/runtime/wrappers/package-info.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/main/java/org/codehaus/groovy/runtime/wrappers/package-info.java b/src/main/java/org/codehaus/groovy/runtime/wrappers/package-info.java new file mode 100644 index 0000000000..fa811ec1d0 --- /dev/null +++ b/src/main/java/org/codehaus/groovy/runtime/wrappers/package-info.java @@ -0,0 +1,24 @@ +/* + * 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. + */ + +/** + * Wrapper types used by the Groovy runtime to associate values with a + * constrained type while preserving Groovy dispatch semantics. + */ +package org.codehaus.groovy.runtime.wrappers;
