Rename o.e.common in libs/core to o.e.core (#73909)

When libs/core was created, several classes were moved from server's
o.e.common package, but they were not moved to a new package. Split
packages need to go away long term, so that Elasticsearch can even think
about modularization. This commit moves all the classes under o.e.common
in core to o.e.core.

relates #73784
This commit is contained in:
Ryan Ernst 2021-06-08 09:53:28 -07:00 committed by GitHub
parent 622d466c29
commit 68817d7ca2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3142 changed files with 4047 additions and 4049 deletions

View file

@ -9,7 +9,7 @@
package org.elasticsearch.runtimefields;
import org.apache.lucene.util.SetOnce;
import org.elasticsearch.common.unit.TimeValue;
import org.elasticsearch.core.TimeValue;
import org.elasticsearch.common.util.LazyInitializable;
import org.elasticsearch.dissect.DissectParser;
import org.elasticsearch.grok.Grok;

View file

@ -14,7 +14,7 @@ import org.elasticsearch.cluster.service.ClusterService;
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
import org.elasticsearch.common.settings.Setting;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.unit.TimeValue;
import org.elasticsearch.core.TimeValue;
import org.elasticsearch.common.xcontent.NamedXContentRegistry;
import org.elasticsearch.env.Environment;
import org.elasticsearch.env.NodeEnvironment;