Use Map.of().
This commit is contained in:
parent
55a995c4cd
commit
a6cc13845a
|
@ -30,7 +30,6 @@ import org.schabi.newpipe.player.ui.VideoPlayerUi;
|
||||||
import org.schabi.newpipe.util.SimpleOnSeekBarChangeListener;
|
import org.schabi.newpipe.util.SimpleOnSeekBarChangeListener;
|
||||||
import org.schabi.newpipe.util.SliderStrategy;
|
import org.schabi.newpipe.util.SliderStrategy;
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
@ -334,10 +333,8 @@ public class PlaybackParameterDialog extends DialogFragment {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Map<Boolean, TextView> getPitchControlModeComponentMappings() {
|
private Map<Boolean, TextView> getPitchControlModeComponentMappings() {
|
||||||
final Map<Boolean, TextView> mappings = new HashMap<>();
|
return Map.of(PITCH_CTRL_MODE_PERCENT, binding.pitchControlModePercent,
|
||||||
mappings.put(PITCH_CTRL_MODE_PERCENT, binding.pitchControlModePercent);
|
PITCH_CTRL_MODE_SEMITONE, binding.pitchControlModeSemitone);
|
||||||
mappings.put(PITCH_CTRL_MODE_SEMITONE, binding.pitchControlModeSemitone);
|
|
||||||
return mappings;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void changePitchControlMode(final boolean semitones) {
|
private void changePitchControlMode(final boolean semitones) {
|
||||||
|
@ -407,13 +404,11 @@ public class PlaybackParameterDialog extends DialogFragment {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Map<Double, TextView> getStepSizeComponentMappings() {
|
private Map<Double, TextView> getStepSizeComponentMappings() {
|
||||||
final Map<Double, TextView> mappings = new HashMap<>();
|
return Map.of(STEP_1_PERCENT_VALUE, binding.stepSizeOnePercent,
|
||||||
mappings.put(STEP_1_PERCENT_VALUE, binding.stepSizeOnePercent);
|
STEP_5_PERCENT_VALUE, binding.stepSizeFivePercent,
|
||||||
mappings.put(STEP_5_PERCENT_VALUE, binding.stepSizeFivePercent);
|
STEP_10_PERCENT_VALUE, binding.stepSizeTenPercent,
|
||||||
mappings.put(STEP_10_PERCENT_VALUE, binding.stepSizeTenPercent);
|
STEP_25_PERCENT_VALUE, binding.stepSizeTwentyFivePercent,
|
||||||
mappings.put(STEP_25_PERCENT_VALUE, binding.stepSizeTwentyFivePercent);
|
STEP_100_PERCENT_VALUE, binding.stepSizeOneHundredPercent);
|
||||||
mappings.put(STEP_100_PERCENT_VALUE, binding.stepSizeOneHundredPercent);
|
|
||||||
return mappings;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setStepSizeToUI(final double newStepSize) {
|
private void setStepSizeToUI(final double newStepSize) {
|
||||||
|
|
Loading…
Reference in New Issue