diff options
| author | 2023-06-22 20:57:01 +0000 | |
|---|---|---|
| committer | 2023-06-22 20:57:01 +0000 | |
| commit | 313d32f730f37d188658b1f12feb0c81d276940e (patch) | |
| tree | f87d896b4006d0c2aa8935d84107362216d4d90c /java/java.go | |
| parent | c3adf443e7a3aee837ef0ca8f74a7f67bd672702 (diff) | |
| parent | c85750bfe3d0ebadc5ef9051603464699c0a09fc (diff) | |
Merge "Use generics for DepSets"
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/java.go b/java/java.go index a026610c2..3e6b96b26 100644 --- a/java/java.go +++ b/java/java.go @@ -231,10 +231,10 @@ type JavaInfo struct { HeaderJars android.Paths // set of header jars for all transitive libs deps - TransitiveLibsHeaderJars *android.DepSet + TransitiveLibsHeaderJars *android.DepSet[android.Path] // set of header jars for all transitive static libs deps - TransitiveStaticLibsHeaderJars *android.DepSet + TransitiveStaticLibsHeaderJars *android.DepSet[android.Path] // ImplementationAndResourceJars is a list of jars that contain the implementations of classes // in the module as well as any resources included in the module. |