diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 15:52:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 16:35:01 +0100 |
commit | 5d9995131d78e169697aabbdcb09c446900aff89 (patch) | |
tree | e55f969f3c94e1cfe583865517343daa05461fb0 /qadevOOo | |
parent | 2dea6b9e966a6a39519729edc262a85f6e9623a9 (diff) |
coverity#1327202 UwF: Unwritten field
Change-Id: Ifa0ffa779aa3dd79f4b41065e33f5cdbf3a89bc9
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/util/TextSectionDsc.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qadevOOo/runner/util/TextSectionDsc.java b/qadevOOo/runner/util/TextSectionDsc.java index 5478b4c59d34..3a6cce51de9a 100644 --- a/qadevOOo/runner/util/TextSectionDsc.java +++ b/qadevOOo/runner/util/TextSectionDsc.java @@ -29,8 +29,6 @@ public class TextSectionDsc extends InstDescr { private static final String service = "com.sun.star.text.TextSection"; private static final String ifcName = "com.sun.star.text.XTextContent"; - private String name = null; - public TextSectionDsc() { initTextSection(); @@ -38,7 +36,7 @@ public class TextSectionDsc extends InstDescr { @Override public String getName() { - return name; + return null; } @Override @@ -71,4 +69,4 @@ public class TextSectionDsc extends InstDescr { ServiceObj ); return PG; } -}
\ No newline at end of file +} |