Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mobile: Remove unused extension function (envoyproxy#30237)
`EngineBuilder.enableHttp3` extension function shadows `EngineBuilder.enableHttp3(Boolean)`, which means it will never be used due to the way extension functions work and it also does the same thing as `EngineBuilder.enableHttp3(Boolean)`. The warning: ``` library/kotlin/io/envoyproxy/envoymobile/EngineBuilderHTTP3Util.kt:13:21: warning: extension is shadowed by a member: public final fun enableHttp3(enableHttp3: Boolean): EngineBuilder fun EngineBuilder.enableHttp3(doEnableHttp3: Boolean): EngineBuilder { ``` Signed-off-by: Fredy Wijaya <[email protected]>
- Loading branch information