Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP7:Update
groovy
groovy-ambiguous-functions-calls.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File groovy-ambiguous-functions-calls.patch of Package groovy
--- groovy-2.4.21/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java 2022-03-23 17:53:51.742427275 +0100 +++ groovy-2.4.21/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java 2022-03-23 18:00:24.736785759 +0100 @@ -11061,7 +11061,7 @@ */ @SuppressWarnings("unchecked") public static <T> T[] plus(T[] left, T[] right) { - return (T[]) plus(toList(left), toList(right)).toArray(); + return (T[]) plus((Collection<T>)toList(left), (Collection<T>)toList(right)).toArray(); } /** @@ -11097,7 +11097,7 @@ */ @SuppressWarnings("unchecked") public static <T> T[] plus(T[] left, Collection<T> right) { - return (T[]) plus(toList(left), right).toArray(); + return (T[]) plus((Collection<T>)toList(left), right).toArray(); } /** @@ -11119,7 +11119,7 @@ */ @SuppressWarnings("unchecked") public static <T> T[] plus(T[] left, Iterable<T> right) { - return (T[]) plus(toList(left), toList(right)).toArray(); + return (T[]) plus((Collection<T>)toList(left), toList(right)).toArray(); } /**
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor