diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-01 15:45:52 +0200 |
commit | e50ef195bc95f3f410119f623928382cb88b45d2 (patch) | |
tree | 0897c005806c84d7e2add9f4a2d407ff4fe911a5 /jvmfwk | |
parent | 363e39d63621b6c7017854ca5bb2f7668bb35846 (diff) |
New loplugin:stringconcat
Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/plugins/sunmajor/pluginlib/util.cxx | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx index abad760cc788..ccf29fc95eea 100644 --- a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx +++ b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx @@ -889,9 +889,8 @@ rtl::Reference<VendorBase> getJREInfoByPath( if (entry2 != mapJREs.end()) { JFW_TRACE2(OUString("[Java framework] sunjavaplugin") - + SAL_DLLEXTENSION + ": " - + "JRE found again (detected before): " + sResolvedDir - + ".\n"); + + SAL_DLLEXTENSION ": JRE found again (detected before): " + + sResolvedDir + ".\n"); return entry2->second; } @@ -941,9 +940,8 @@ rtl::Reference<VendorBase> getJREInfoByPath( if (entry != mapJREs.end()) { JFW_TRACE2(OUString("[Java framework] sunjavaplugin") - + SAL_DLLEXTENSION + ": " - + "JRE found again (detected before): " + sFilePath - + ".\n"); + + SAL_DLLEXTENSION ": JRE found again (detected before): " + + sFilePath + ".\n"); return entry->second; } @@ -1038,8 +1036,7 @@ rtl::Reference<VendorBase> getJREInfoByPath( else { JFW_TRACE2(OUString("[Java framework] sunjavaplugin") - + SAL_DLLEXTENSION + ": " - + "Found JRE: " + sResolvedDir + + SAL_DLLEXTENSION ": Found JRE: " + sResolvedDir + " \n at: " + path + ".\n"); mapJREs.insert(MAPJRE::value_type(sResolvedDir, ret)); |