summaryrefslogtreecommitdiff
path: root/jvmfwk/plugins
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-04-13 14:54:59 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-04-13 21:14:15 +0200
commitda95fc2983e9deea30b9b7148a6e10b5423ed3e1 (patch)
treed2ff974f976db4ce90ffbe49d938c2f1401a780c /jvmfwk/plugins
parente7f9da36198bb53aec2ed0c492cb723bec98f29b (diff)
loplugin:sequentialassign in embeddedobj..l10ntools
Change-Id: I69377e2f96a376a7a5ccaec268c4f92c00a250f7 Reviewed-on: https://gerrit.libreoffice.org/70705 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'jvmfwk/plugins')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util.hxx b/jvmfwk/plugins/sunmajor/pluginlib/util.hxx
index 02ee2a4f62ba..56e487b45b76 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/util.hxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/util.hxx
@@ -83,8 +83,7 @@ struct SameOrSubDirJREMap
{
if (s1 == s2.first)
return true;
- OUString sSub;
- sSub = s2.first + "/";
+ OUString sSub = s2.first + "/";
if (s1.match(sSub))
return true;
return false;