Installs a plugin in the Plugins menu using the class name, with underscores replaced by spaces, as the command.
(String className)
| 1232 | /** Installs a plugin in the Plugins menu using the class name, |
| 1233 | with underscores replaced by spaces, as the command. */ |
| 1234 | void installUserPlugin(String className) { |
| 1235 | installUserPlugin(className, false); |
| 1236 | } |
| 1237 | |
| 1238 | public void installUserPlugin(String className, boolean force) { |
| 1239 | int slashIndex = className.indexOf('/'); |
no test coverage detected