diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-11-05 09:39:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-05 11:07:39 +0000 |
commit | f1fbda5bf7cecd7f1b5605137b0a60c22f600e37 (patch) | |
tree | ae5fa8fe44467e4352f3c31f4d8ccc59243b3418 /qadevOOo | |
parent | addec679db06203eb4cea71d8f98d38fec9f772c (diff) |
coverity#1326577 Useless call
Change-Id: I3f9742cafdcdce3302c925a2227da1f7839c80c3
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/helper/APIDescGetter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/helper/APIDescGetter.java b/qadevOOo/runner/helper/APIDescGetter.java index 55a269889486..19fdaacf4704 100644 --- a/qadevOOo/runner/helper/APIDescGetter.java +++ b/qadevOOo/runner/helper/APIDescGetter.java @@ -298,7 +298,7 @@ public class APIDescGetter extends DescGetter } if (aToken.hasMoreTokens()) { - StringHelper.removeQuoteIfExists(aToken.nextToken()); + aToken.nextToken(); } if (aToken.hasMoreTokens()) { |