diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 15:48:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 16:35:00 +0100 |
commit | 3b3e2ae28e6108f05c0774f73325e8b497053b99 (patch) | |
tree | bef619c99d7cf36b8045be6be7eb0df268f16749 | |
parent | f40120dc6fca7170a416be2c75ff47b5946efc87 (diff) |
coverity#1327198 UwF: Unwritten field
Change-Id: I0ecbd7c8b16af7dbd81d9420dfab2edc7ca73493
-rw-r--r-- | qadevOOo/runner/util/FootnoteDsc.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qadevOOo/runner/util/FootnoteDsc.java b/qadevOOo/runner/util/FootnoteDsc.java index 3fc082a3de62..b14f70bf888b 100644 --- a/qadevOOo/runner/util/FootnoteDsc.java +++ b/qadevOOo/runner/util/FootnoteDsc.java @@ -29,8 +29,6 @@ public class FootnoteDsc extends InstDescr { private static final String service = "com.sun.star.text.Footnote"; private static final String ifcName = "com.sun.star.text.XTextContent"; - private String name = null; - public FootnoteDsc() { initFootnote(); @@ -38,7 +36,7 @@ public class FootnoteDsc extends InstDescr { @Override public String getName() { - return name; + return null; } @Override @@ -71,4 +69,4 @@ public class FootnoteDsc extends InstDescr { ServiceObj ); return FN; } -}
\ No newline at end of file +} |