mirror of https://github.com/apache/kafka.git
MINOR: Cleanup MetadataVersion (#18623)
Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
697cf641bc
commit
3490cf7bfc
|
@ -157,7 +157,7 @@ public enum MetadataVersion {
|
|||
// LATEST_STABLE_METADATA_VERSION version in tests/kafkatest/version.py
|
||||
|
||||
/**
|
||||
* An array containing all of the MetadataVersion entries.
|
||||
* An array containing all the MetadataVersion entries.
|
||||
*
|
||||
* This is essentially a cached copy of MetadataVersion.values. Unlike that function, it doesn't
|
||||
* allocate a new array each time.
|
||||
|
@ -169,10 +169,6 @@ public enum MetadataVersion {
|
|||
private final String ibpVersion;
|
||||
private final boolean didMetadataChange;
|
||||
|
||||
MetadataVersion(int featureLevel, String release, String subVersion) {
|
||||
this(featureLevel, release, subVersion, true);
|
||||
}
|
||||
|
||||
MetadataVersion(int featureLevel, String release, String subVersion, boolean didMetadataChange) {
|
||||
this.featureLevel = (short) featureLevel;
|
||||
this.release = release;
|
||||
|
@ -200,10 +196,6 @@ public enum MetadataVersion {
|
|||
return this.isAtLeast(IBP_3_3_IV1);
|
||||
}
|
||||
|
||||
public boolean isApiForwardingEnabled() {
|
||||
return this.isAtLeast(IBP_3_4_IV0);
|
||||
}
|
||||
|
||||
public boolean isScramSupported() {
|
||||
return this.isAtLeast(IBP_3_5_IV2);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue