Skip to content

Commit 2cb4a1a

Browse files
committed
Formatting.
1 parent ced1af6 commit 2cb4a1a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

cpp/bindings.cpp

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -286,21 +286,21 @@ void osp::install(jsi::Runtime &rt,
286286
return {};
287287
});
288288

289-
auto refreshSchema = HOSTFN("refreshSchema", 1) {
290-
if (count == 0) {
291-
throw jsi::JSError(rt, "[react-native-quick-sqlite][refreshSchema] database name is required");
292-
}
289+
auto refreshSchema = HOSTFN("refreshSchema", 1) {
290+
if (count == 0) {
291+
throw jsi::JSError(rt, "[react-native-quick-sqlite][refreshSchema] database name is required");
292+
}
293293

294-
if (!args[0].isString()) {
295-
throw jsi::JSError(rt, "[react-native-quick-sqlite][refreshSchema] database name must be a string");
296-
}
294+
if (!args[0].isString()) {
295+
throw jsi::JSError(rt, "[react-native-quick-sqlite][refreshSchema] database name must be a string");
296+
}
297297

298-
string dbName = args[0].asString(rt).utf8(rt);
298+
string dbName = args[0].asString(rt).utf8(rt);
299299

300-
sqliteRefreshSchema(dbName);
300+
sqliteRefreshSchema(dbName);
301301

302-
return {};
303-
});
302+
return {};
303+
});
304304

305305
auto executeInContext = HOSTFN("executeInContext", 3) {
306306
if (count < 4) {

0 commit comments

Comments
 (0)