Kaydet (Commit) 47550b1f authored tarafından Noel Grandin's avatar Noel Grandin

cid#1326607 Bx: Questionable Boxing of primitive value

Change-Id: Ib1274f55d5e26612dde2753a16ae1ad28007f758
üst abd980d4
......@@ -66,8 +66,8 @@ public class UnoScrollBarControl extends TestCase {
Dimension dim = new Dimension(800, 600);
Rectangle newPosSize = xWin.getPosSize();
newPosSize.Width = new Double(dim.getWidth()).intValue();
newPosSize.Height = new Double(dim.getHeight()).intValue();
newPosSize.Width = (int) dim.getWidth();
newPosSize.Height = (int) dim.getHeight();
newPosSize.X = 0;
newPosSize.Y = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment