Update setup.mdx (#4789)

Summary:
Adding missing semicolon.

Added a missing semicolon in java code.

## Changelog
Update documentation.

Pull Request resolved: https://github.com/facebook/flipper/pull/4789

Test Plan: Does not require a test plan.

Reviewed By: antonk52

Differential Revision: D46355062

Pulled By: passy

fbshipit-source-id: 20c398018b1d2deffb9b1a755d2c5a1543e48c21
This commit is contained in:
Carlos Moreno
2023-06-01 07:05:55 -07:00
committed by Facebook GitHub Bot
parent 12734d6b7e
commit b3850c75c7

View File

@@ -21,7 +21,7 @@ client.addPlugin(new DatabasesFlipperPlugin(new SqliteDatabaseDriver(context, ne
for (String databaseName : context.databaseList()) { for (String databaseName : context.databaseList()) {
databaseFiles.add(context.getDatabasePath(databaseName)); databaseFiles.add(context.getDatabasePath(databaseName));
} }
databaseFiles.add("...path_to_your_db...") databaseFiles.add("...path_to_your_db...");
return databaseFiles; return databaseFiles;
} }
}))); })));