summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/ShapeDsc.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-08 11:36:04 +0200
committerNoel Grandin <noel@peralex.com>2014-08-13 08:49:22 +0200
commitda677dfd59c2b551f3335ee0a5d5dfb33f9869c5 (patch)
tree9aa09066c95935117bf405b119ed9f89f448a54d /qadevOOo/runner/util/ShapeDsc.java
parent14d1a11ec4a7ed0deeac522403248536e8d23f57 (diff)
java: reduce scope, make fields private
found by UCDetector Change-Id: I7f97e15667159cf8ee776e8f32fdcdec8ec00ed6
Diffstat (limited to 'qadevOOo/runner/util/ShapeDsc.java')
-rw-r--r--qadevOOo/runner/util/ShapeDsc.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/util/ShapeDsc.java b/qadevOOo/runner/util/ShapeDsc.java
index faea91984842..c8f970e50701 100644
--- a/qadevOOo/runner/util/ShapeDsc.java
+++ b/qadevOOo/runner/util/ShapeDsc.java
@@ -32,9 +32,9 @@ public class ShapeDsc extends InstDescr {
private int y = 0;
private int height = 0;
private int width = 0;
- private String name = null;
- final String ifcName = "com.sun.star.drawing.XShape";
- String service = "com.sun.star.drawing.RectangleShape";
+ private String name = null;
+ private final String ifcName = "com.sun.star.drawing.XShape";
+ private String service = "com.sun.star.drawing.RectangleShape";
public ShapeDsc( int nheight, int nwidth, int nx, int ny, String kind ) {
x=nx;