From 2c6d126f0562d2bf9828d61de016f413d20de7d7 Mon Sep 17 00:00:00 2001 From: Justin Tuchek Date: Mon, 7 Jan 2019 08:49:44 -0800 Subject: [PATCH] Update sonar references in sandbox plugin docs (#349) Summary: Was experimenting with Flipper for the first time - while copying snippets over realized the classes don't exist anymore. Just wanted to contribute. Update class names and import paths for sandbox plugin snippet. Pull Request resolved: https://github.com/facebook/flipper/pull/349 Differential Revision: D13590256 Pulled By: passy fbshipit-source-id: f6802276d40d7a76e15b5aad7bb86cda34c85e12 --- docs/sandbox-plugin.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sandbox-plugin.md b/docs/sandbox-plugin.md index f07e34c8b..91a125b90 100644 --- a/docs/sandbox-plugin.md +++ b/docs/sandbox-plugin.md @@ -13,11 +13,11 @@ To use the sandbox plugin, you need to add the plugin to your Flipper client ins ### Android ```java -import com.facebook.flipper.plugins.SandboxSonarPlugin; -import com.facebook.flipper.plugins.SandboxSonarPluginStrategy; +import com.facebook.flipper.plugins.sandbox.SandboxFlipperPlugin; +import com.facebook.flipper.plugins.sandbox.SandboxFlipperPluginStrategy; -final SandboxSonarPluginStrategy strategy = getStrategy(); // Your strategy goes here -client.addPlugin(new SandboxSonarPlugin(strategy)); +final SandboxFlipperPluginStrategy strategy = getStrategy(); // Your strategy goes here +client.addPlugin(new SandboxFlipperPlugin(strategy)); ``` ### iOS