groovy icon indicating copy to clipboard operation
groovy copied to clipboard

Apache Groovy: A powerful multi-faceted programming language for the JVM platform

Results 31 groovy issues
Sort by recently updated
recently updated
newest added

The idea is to create a simple http client without extra dependencies that will cover rest client needs. Code example: ```groovy def r = HTTP.get( url : 'https://www.googleapis.com/customsearch/v1', query: [...

Uses jarjar to remove org.codehaus.groovy.vmplugin.v7.IndyInterface which has a invoke dynamic call. This call causes android compilation to fail when targeting sdk level 26 or above but the minSdk is less...

…Reference now, so the Reference is cleaned up nearly immediately after freeing the last strong reference of the metaclass. Prior it was used a SoftReference which prevents the ClassLoader, the...

This annotation allows custom `Collection` and `Map` objects to bypass the default Groovy format and equality methods ie. `toString` and `equals`.

This test fails because `ClassNode.getSuperClass().getDeclaredConstructor(SCRIPT_CONTEXT_CTOR)` doesn't see the constructors in the Java base class. `ModuleNode.setScriptBaseClassFromConfig(ClassNode)` calls `.setSuperClass(ClassHelper.make(baseClassName))` on the `scriptDummy` `ClassNode`. The `ClassNode` created for this script's base class has...

Consider the following: ``` @groovy.transform.TypeChecked void test(int[] ints) { ints.eachWithIndex { value, index -> println "$index: ${value.doubleValue()}" } } test(0,1,2,3,4,5) Compiler reports "[Static type checking] - Cannot find matching method...