diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-03-18 12:36:02 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-03-25 15:14:44 +0200 |
commit | f365b17bf170c8ed1baae299a2d719774fcc4305 (patch) | |
tree | 312378ff5e6ef487ab65d7a1d011307486941c56 /jvmfwk | |
parent | dd5df4ccb33048fa5fa8f85b2e6e69a6a225be57 (diff) |
Use for-range loops in some modules
jvmaccess, jvmfwk, l10ntools, libreofficekit and linguistic
Change-Id: I9d290d1098b25ccb3aee19d2df18c18f4aa65105
Reviewed-on: https://gerrit.libreoffice.org/51495
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/plugins/sunmajor/pluginlib/util.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx index 187a2789b4cc..dfa4653054cc 100644 --- a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx +++ b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx @@ -614,10 +614,9 @@ bool getJavaInfoFromRegistry(const wchar_t* szRegKey, { bool bAppend= true; //iterate over the vector with java home strings - for(auto itHome= vecJavaHome.begin(); - itHome != vecJavaHome.end(); ++itHome) + for (auto const& javaHome : vecJavaHome) { - if(usHomeUrl.equals(*itHome)) + if(usHomeUrl.equals(javaHome)) { bAppend= false; break; |