mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-09 14:35:04 +00:00
This commit removes and now forbids all uses of com.google.common.base.Strings across the codebase. For uses of com.google.common.base.Strings.isNullOrEmpty, use org.elasticsearch.common.Strings.isNullOrEmpty. For uses of com.google.common.base.Strings.padStart use org.elasticsearch.common.Strings.padStart. For uses of com.google.common.base.Strings.nullToEmpty use org.elasticsearch.common.Strings.coalesceToEmpty. Relates #13224