Skip to content

Commit db890c9

Browse files
committed
Correct method name
1 parent 45cc5e0 commit db890c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/mybatis/dynamic/sql/SqlTable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private String compose(Supplier<Optional<String>> catalogSupplier, Supplier<Opti
5858
}
5959

6060
private String compose(String catalog, Supplier<Optional<String>> schemaSupplier, String tableName) {
61-
return schemaSupplier.get().map(s -> composeCatalogSchemaAndAndTable(catalog, s, tableName))
61+
return schemaSupplier.get().map(s -> composeCatalogSchemaAndTable(catalog, s, tableName))
6262
.orElseGet(() -> composeCatalogAndTable(catalog, tableName));
6363
}
6464

@@ -75,7 +75,7 @@ private String composeSchemaAndTable(String schema, String tableName) {
7575
return schema + "." + tableName; //$NON-NLS-1$
7676
}
7777

78-
private String composeCatalogSchemaAndAndTable(String catalog, String schema, String tableName) {
78+
private String composeCatalogSchemaAndTable(String catalog, String schema, String tableName) {
7979
return catalog + "." + schema + "." + tableName; //$NON-NLS-1$ //$NON-NLS-2$
8080
}
8181

0 commit comments

Comments
 (0)