Skip to content

Commit 6b5860b

Browse files
committed
fix type
1 parent ff0753e commit 6b5860b

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/geckotechnology/mySqlDataCompare

1 file changed

+1
-1
lines changed

src/main/java/com/geckotechnology/mySqlDataCompare/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static void main(String[] args)
5656
System.out.println("Comparing Database Schema Data MASTER with Slave #" + i);
5757
ArrayList<Table> tablesReadyToBeDataAnalyzed = mySQLSchemaComparer.getMasterTablesReadyToBeDataAnalyzed();
5858
//printing table names to be analyzed
59-
System.out.print("In-scope tables for comparison: " + tablesReadyToBeDataAnalyzed.size() + ". Table names: ");
59+
System.out.print("In scope tables for comparison: " + tablesReadyToBeDataAnalyzed.size() + ". Table names: ");
6060
for(Table table:tablesReadyToBeDataAnalyzed) {
6161
System.out.print(table.getTableName());
6262
System.out.print(" ");

0 commit comments

Comments
 (0)