diff options
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/android/config.go b/android/config.go index d5ed883fa..255c836bf 100644 --- a/android/config.go +++ b/android/config.go @@ -723,10 +723,6 @@ func (c *config) IsEnvFalse(key string) bool { return value == "0" || value == "n" || value == "no" || value == "off" || value == "false" } -func (c *config) TargetsJava17() bool { - return c.IsEnvTrue("EXPERIMENTAL_TARGET_JAVA_VERSION_17") -} - // EnvDeps returns the environment variables this build depends on. The first // call to this function blocks future reads from the environment. func (c *config) EnvDeps() map[string]string { |