From e50ef195bc95f3f410119f623928382cb88b45d2 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 1 Jul 2014 15:45:52 +0200 Subject: New loplugin:stringconcat Change-Id: Id7c517fb37bc28797c45fc0dde83e866f2aa4aac --- jvmfwk/plugins/sunmajor/pluginlib/util.cxx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'jvmfwk') 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 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 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 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)); -- cgit