File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
docs/reference/migration/migrate_7_0
server/src/main/java/org/elasticsearch/common/component Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -38,4 +38,10 @@ because `Settings` is no longer needed.
3838==== Deprecated method `Client#termVector` removed
3939
4040The client method `termVector`, deprecated in 2.0, has been removed. The method
41- `termVectors` (plural) should be used instead.
41+ `termVectors` (plural) should be used instead.
42+
43+ [float]
44+ ==== Deprecated constructor `AbstractLifecycleComponent(Settings settings)` removed
45+
46+ The constructor `AbstractLifecycleComponent(Settings settings)`, deprecated in 6.7
47+ has been removed. The parameterless constructor should be used instead.
Original file line number Diff line number Diff line change 2121
2222import org .apache .logging .log4j .LogManager ;
2323import org .apache .logging .log4j .Logger ;
24- import org .elasticsearch .common .settings .Settings ;
2524
2625import java .io .IOException ;
2726import java .util .List ;
@@ -36,11 +35,6 @@ public abstract class AbstractLifecycleComponent implements LifecycleComponent {
3635
3736 protected AbstractLifecycleComponent () {}
3837
39- @ Deprecated
40- protected AbstractLifecycleComponent (Settings settings ) {
41- // TODO drop settings from ctor
42- }
43-
4438 @ Override
4539 public Lifecycle .State lifecycleState () {
4640 return this .lifecycle .state ();
You can’t perform that action at this time.
0 commit comments