diff --git a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/slm/SnapshotRetentionConfiguration.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/slm/SnapshotRetentionConfiguration.java index 54c153c04ea31..ff73f03126352 100644 --- a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/slm/SnapshotRetentionConfiguration.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/slm/SnapshotRetentionConfiguration.java @@ -112,18 +112,6 @@ public static SnapshotRetentionConfiguration parse(XContentParser parser, String return PARSER.apply(parser, null); } - public TimeValue getExpireAfter() { - return this.expireAfter; - } - - public Integer getMinimumSnapshotCount() { - return this.minimumSnapshotCount; - } - - public Integer getMaximumSnapshotCount() { - return this.maximumSnapshotCount; - } - /** * Return a predicate by which a SnapshotInfo can be tested to see * whether it should be deleted according to this retention policy.