src/main/java/software/aws/glue/tableversions/utils/GlueUtil.java [87:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			for (Table table : tableList) {
				if (!Optional.ofNullable(table.getTargetTable()).isPresent()) {
					masterTableList.add(table);
				} else {
					System.out.printf("Table '%s' under database '%s' seems to have resource linked from AWS Account Id: '%s'. So, it will be skipped. \n",
							table.getName(), table.getDatabaseName(), table.getTargetTable().getCatalogId());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/software/aws/glue/tableversions/utils/GlueUtil.java [103:108]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
					for (Table table : tableList) {
						if (!Optional.ofNullable(table.getTargetTable()).isPresent()) {
							masterTableList.add(table);
						} else {
							System.out.printf("Table '%s' under database '%s' seems to have resource linked from AWS Account Id: '%s'. So, it will be skipped. \n",
									table.getName(), table.getDatabaseName(), table.getTargetTable().getCatalogId());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



