made variable final - checkstyle

Former-commit-id: 1834255b8a05b21e2b55777f183be09d47a50b0f
This commit is contained in:
Jeremy Long
2014-01-25 11:06:09 -05:00
parent b3a0dc3506
commit 9de3ae5cf2

View File

@@ -139,7 +139,7 @@ public class DatabaseProperties {
* @return a map of the database meta data * @return a map of the database meta data
*/ */
public Map getMetaData() { public Map getMetaData() {
TreeMap map = new TreeMap(); final TreeMap map = new TreeMap();
for (Entry<Object, Object> entry : properties.entrySet()) { for (Entry<Object, Object> entry : properties.entrySet()) {
final String key = (String) entry.getKey(); final String key = (String) entry.getKey();
if (!"version".equals(key)) { if (!"version".equals(key)) {