in plugin/src/main/groovy/grails/plugins/redis/ast/AbstractMemoizeASTTransformation.groovy [103:107]
private static void addStarImport(SourceUnit sourceUnit, Class serviceClass) {
if (!sourceUnit.AST.starImports.any { it.packageName =~ "${ClassHelper.make(serviceClass).packageName}" }) {
sourceUnit.AST.addStarImport(ClassHelper.make(serviceClass).packageName)
}
}