Removing unnecessary add an empty string

Change-Id: Ib028b9c74f381d5e745d4056c41537d8cb4721b5
This commit is contained in:
alex.ryazantsev
2013-11-08 00:24:22 +04:00
parent 6440ccdc2c
commit d83dcf65b4

View File

@@ -71,7 +71,7 @@ public class ProgressBar extends Composite {
public void setValue(final int pComplete) {
assert 0 <= pComplete && pComplete <= 100;
value = pComplete;
bar.setWidth("" + (2 * pComplete) + "px");
bar.setWidth(2 * pComplete + "px");
msg.setText(callerText + pComplete + "%");
}
}