chore(build): remove FeatureIsolationTask and simplify exception handling in build script

- Deleted `FeatureIsolationTask` for build script simplification and maintainability.
- Replaced `_` with `e` in `Throwable` catch blocks to improve readability.
This commit is contained in:
2026-01-03 22:54:22 +01:00
parent 5a142a26b4
commit bd0cc49cf5
2 changed files with 1 additions and 53 deletions
+1 -1
View File
@@ -233,7 +233,7 @@ tasks.register("archGuardNoFeatureToFeatureDeps") {
val proj =
try {
dep.javaClass.getMethod("getDependencyProject").invoke(dep) as Project
} catch (_: Throwable) {
} catch (e: Throwable) {
null
}
val target = proj?.path ?: ""