made variable final - checkstyle

Former-commit-id: 9ce0624d3df3d1924a5a673f7f4715a960b1fabf
This commit is contained in:
Jeremy Long
2014-01-25 11:06:09 -05:00
parent 95c824f401
commit 82e4677b0d

View File

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