diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 15:51:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 16:35:00 +0100 |
commit | 3cce71478d1fec570edfa34aba65a08b01a1e3ad (patch) | |
tree | 324ad87f99b405d8812b543b5aff35ca79977a9e | |
parent | 1bc8beeea862616f9a28277b5ee2c424e654278d (diff) |
coverity#1327200 UwF: Unwritten field
Change-Id: I7e78b77642e70a13dcfa71e71f541bed31a4f47a
-rw-r--r-- | qadevOOo/runner/util/ParagraphDsc.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qadevOOo/runner/util/ParagraphDsc.java b/qadevOOo/runner/util/ParagraphDsc.java index e4c73a6969a3..12ec3bf1273d 100644 --- a/qadevOOo/runner/util/ParagraphDsc.java +++ b/qadevOOo/runner/util/ParagraphDsc.java @@ -30,8 +30,6 @@ public class ParagraphDsc extends InstDescr { private static final String service = "com.sun.star.text.Paragraph"; private static final String ifcName = "com.sun.star.text.XTextContent"; - private String name = null; - public ParagraphDsc() { initParagraph(); @@ -39,7 +37,7 @@ public class ParagraphDsc extends InstDescr { @Override public String getName() { - return name; + return null; } @Override @@ -72,4 +70,4 @@ public class ParagraphDsc extends InstDescr { ServiceObj ); return PG; } -}
\ No newline at end of file +} |