DBZ-1555 JavaDoc fix; formatting

This commit is contained in:
Gunnar Morling 2019-11-08 15:08:46 +01:00
parent 0198bceffa
commit da2b6c2c78
4 changed files with 4 additions and 3 deletions

View File

@ -76,6 +76,7 @@ Leo Mei
Lev Zemlyanov Lev Zemlyanov
Listman Gamboa Listman Gamboa
Liu Hanlin Liu Hanlin
Luis Garcés-Erice
Maciej Bryński Maciej Bryński
MaoXiang Pan MaoXiang Pan
Mario Mueller Mario Mueller

View File

@ -49,7 +49,8 @@ protected HistorizedRelationalDatabaseConnectorConfig(Configuration config, Stri
this.useCatalogBeforeSchema = useCatalogBeforeSchema; this.useCatalogBeforeSchema = useCatalogBeforeSchema;
} }
protected HistorizedRelationalDatabaseConnectorConfig(Configuration config, String logicalName, TableFilter systemTablesFilter, TableIdToStringMapper tableIdMapper, boolean useCatalogBeforeSchema) { protected HistorizedRelationalDatabaseConnectorConfig(Configuration config, String logicalName, TableFilter systemTablesFilter, TableIdToStringMapper tableIdMapper,
boolean useCatalogBeforeSchema) {
super(config, logicalName, systemTablesFilter, tableIdMapper, DEFAULT_SNAPSHOT_FETCH_SIZE); super(config, logicalName, systemTablesFilter, tableIdMapper, DEFAULT_SNAPSHOT_FETCH_SIZE);
this.useCatalogBeforeSchema = useCatalogBeforeSchema; this.useCatalogBeforeSchema = useCatalogBeforeSchema;
} }

View File

@ -73,7 +73,6 @@ public interface DatabaseHistory {
+ "from processing and storing into schema history evolution.") + "from processing and storing into schema history evolution.")
.withValidation(Field::isListOfRegex); .withValidation(Field::isListOfRegex);
/** /**
* Configure this instance. * Configure this instance.
* *

View File

@ -37,7 +37,7 @@ public TableChanges() {
} }
/** /**
* useCatalogBeforeSchema is true if the parsed string contains only 2 items and the first should be used as * @param useCatalogBeforeSchema true if the parsed string contains only 2 items and the first should be used as
* the catalog and the second as the table name, or false if the first should be used as the schema and the * the catalog and the second as the table name, or false if the first should be used as the schema and the
* second as the table name * second as the table name
*/ */