diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-12 09:55:57 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-11-12 11:03:29 +0000 |
commit | bb437029c1e5331bcc3f8fb2fc87837142a52f33 (patch) | |
tree | 56bde4059792a5284e90ae3b10ee4388cc913a54 /qadevOOo/runner/util | |
parent | 84f7f412bfc9e18b1ff8b133ceda7757eae28c36 (diff) |
java: convert fields to local variables where possible
found by PMD
Change-Id: I05b45382b8fb1b734657ce9421a20e6ef6fbe542
Reviewed-on: https://gerrit.libreoffice.org/12376
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r-- | qadevOOo/runner/util/FrameDsc.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qadevOOo/runner/util/FrameDsc.java b/qadevOOo/runner/util/FrameDsc.java index 348cc8d5d3fb..644a2530c5e5 100644 --- a/qadevOOo/runner/util/FrameDsc.java +++ b/qadevOOo/runner/util/FrameDsc.java @@ -30,7 +30,6 @@ import com.sun.star.beans.XPropertySet; */ public class FrameDsc extends InstDescr { - private Size size = null; private int height = 2000; private int width = 2000; private String name = null; @@ -77,7 +76,7 @@ public class FrameDsc extends InstDescr { public XInterface createInstance( XMultiServiceFactory docMSF ) { Object SrvObj = null; - size = new Size(); + Size size = new Size(); size.Height = height; size.Width = width; |