mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-24 10:01:35 +01:00
made variable final - checkstyle
Former-commit-id: 1834255b8a05b21e2b55777f183be09d47a50b0f
This commit is contained in:
@@ -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)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user