Merge pull request #491 from naoliv/pull12
Replace concat() call with +
This commit is contained in:
commit
97df6e473a
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ public class SeekBarPreference extends DialogPreference implements
|
|||
public void onProgressChanged(final SeekBar seek, final int value,
|
||||
final boolean fromTouch) {
|
||||
final String t = String.valueOf(value);
|
||||
valueTextView.setText(valueText == null ? t : t.concat(valueText));
|
||||
valueTextView.setText(valueText == null ? t : t + valueText);
|
||||
valueToSave = value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue