Move io utils to core package (#85954)

Most classes under elasticsearch-core had been moved to the o.e.core
package. However, a couple io related classes remained in an "internal"
package. This commit moves Streams and IOUtils to the core package, as
they are no more "internal" than the rest of the classes in core.
This commit is contained in:
Ryan Ernst 2022-04-19 21:26:28 -07:00 committed by GitHub
parent 445d438b34
commit b2c9028384
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
261 changed files with 262 additions and 272 deletions

View file

@ -32,7 +32,7 @@ import org.elasticsearch.common.Strings;
import org.elasticsearch.common.bytes.BytesReference;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.xcontent.XContentHelper;
import org.elasticsearch.core.internal.io.IOUtils;
import org.elasticsearch.core.IOUtils;
import org.elasticsearch.index.query.InnerHitBuilder;
import org.elasticsearch.index.query.MatchQueryBuilder;
import org.elasticsearch.index.query.QueryBuilders;