diff options
author | 2024-09-11 11:35:46 -0700 | |
---|---|---|
committer | 2024-09-11 11:35:46 -0700 | |
commit | e8a8783154dc31f3e09e3bb98a8b11233358097d (patch) | |
tree | f19de4ab4630cf252c06573c9fad7c20b3703b1b /java/boot_jars.go | |
parent | 28b806c9eb56698c9484c1fb6071bd091c3aa20e (diff) |
Rename ConfigAndErrorContext to ConfigurableEvaluatorContext
I'm going to be adding some methods to this interface, give it
a name based on how it's going to be used, not based on what methods
it contains.
Bug: 323382414
Test: m nothing --no-skip-soong-tests
Change-Id: I9bba04ba756c4dbe00625e2d04af81e78a11cae9
Diffstat (limited to 'java/boot_jars.go')
-rw-r--r-- | java/boot_jars.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/boot_jars.go b/java/boot_jars.go index 6223dede8..3c3bd550c 100644 --- a/java/boot_jars.go +++ b/java/boot_jars.go @@ -21,7 +21,7 @@ import ( // isActiveModule returns true if the given module should be considered for boot // jars, i.e. if it's enabled and the preferred one in case of source and // prebuilt alternatives. -func isActiveModule(ctx android.ConfigAndErrorContext, module android.Module) bool { +func isActiveModule(ctx android.ConfigurableEvaluatorContext, module android.Module) bool { if !module.Enabled(ctx) { return false } |