@@ -191,7 +191,7 @@ public boolean synchronizeModel() {
191191 return mappingRegistry .getProxyInstances ()
192192 .stream ().flatMap (i -> i .getTableSchemas (
193193 getOptions ().getNamingStrategy (),
194- this instanceof SQLiteDatabaseConnectionImpl ).stream ())
194+ this instanceof SQLiteDatabaseConnection ).stream ())
195195 .anyMatch (schema -> synchronizeModel (schema , schema .getTable ()));
196196 }
197197
@@ -227,7 +227,7 @@ public boolean synchronizeModel(TableSchema entitySchema, String table) {
227227 public boolean synchronizeModel (Class <?> entity , String table ) {
228228 return synchronizeModel (new EntitySchemaBuilder (table , entity ,
229229 getOptions ().getNamingStrategy (),
230- this instanceof SQLiteDatabaseConnectionImpl ).buildTableSchema (), table );
230+ this instanceof SQLiteDatabaseConnection ).buildTableSchema (), table );
231231 }
232232
233233 /**
@@ -332,7 +332,7 @@ public final <T> T createProxy(final @NotNull Class<T> mappingInterface, final @
332332 public final boolean buildEntitySchema (final @ NotNull String tableName , final @ NotNull Class <?> entityClass ) {
333333 Objects .requireNonNull (entityClass , "Entity class cannot be null!" );
334334
335- EntitySchemaBuilder converter = new EntitySchemaBuilder (tableName , entityClass , options .getNamingStrategy (), this instanceof SQLiteDatabaseConnectionImpl );
335+ EntitySchemaBuilder converter = new EntitySchemaBuilder (tableName , entityClass , options .getNamingStrategy (), this instanceof SQLiteDatabaseConnection );
336336 String query = converter .buildTableQuery ();
337337
338338 return exec (() -> query ).isSuccessful ();
0 commit comments