Complete PrintCache unit-test
[ovsdb.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / internal / NodeDatabase.java
index 4a80e82f909c0f9f01d57d1d859a9ea3de1740ae..ec1904c604793bf21b93077ae0ded6290550d56e 100644 (file)
@@ -66,7 +66,7 @@ public class NodeDatabase {
             if (tableDB == null) continue;
             for (String tableName : tableDB.keySet()) {
                 ConcurrentMap<String, Row> tableRows = this.getTableCache(dbName, tableName);
-                System.out.println("\t Table "+tableName);
+                System.out.println("\tTable "+tableName);
                 for (String uuid : tableRows.keySet()) {
                     Row row = tableRows.get(uuid);
                     Collection<Column> columns = row.getColumns();