Merge pull request #491 from naoliv/pull12

Replace concat() call with +
This commit is contained in:
vshcherb 2013-08-05 10:45:46 -07:00
commit 97df6e473a

View file

@ -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;
}