From 78bfbe0badcc79ba6d599ea03ad41317656e87a1 Mon Sep 17 00:00:00 2001 From: Dawid Weiss Date: Tue, 30 Mar 2021 10:57:15 +0200 Subject: [PATCH] We don't need to exclude inner classes explicitly. --- gradle/ant-compat/misc.gradle | 8 -------- 1 file changed, 8 deletions(-) diff --git a/gradle/ant-compat/misc.gradle b/gradle/ant-compat/misc.gradle index b0494dd4bfa..d50a80baa0e 100644 --- a/gradle/ant-compat/misc.gradle +++ b/gradle/ant-compat/misc.gradle @@ -15,14 +15,6 @@ * limitations under the License. */ - -// Exclude inner classes from testing. -allprojects { - tasks.withType(Test) { task -> - exclude '**/*$*' - } -} - // Exclude test classes that are not actually stand-alone tests (they're executed from other stuff). configure(project(":lucene:replicator")) { plugins.withType(JavaPlugin) {