File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
librootjava_example/src/main/java/eu/chainfire/librootjava_example
librootjava/src/main/java/eu/chainfire/librootjava Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -266,8 +266,8 @@ public static void restoreOriginalLdLibraryPath() {
266
266
* Due to preparing the main looper, this throws off libsuperuser if you use it for shell
267
267
* commands on the main thread. If you use this call, you will probably need to call
268
268
* Debug.setSanityChecksEnabled(false) to get any shell calls executed, and create a
269
- * separate HandlerThread (and Handler), and use both Shell.Builder:: setAutoHandler(false)
270
- * and Shell.Builder:: setHandler(^^^^) for Shell.Interactive to behave as expected.
269
+ * separate HandlerThread (and Handler), and use both Shell.Builder. setAutoHandler(false)
270
+ * and Shell.Builder. setHandler(^^^^) for Shell.Interactive to behave as expected.
271
271
*
272
272
* @return System context
273
273
*/
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ you can use the isDisconnectScheduled() call as a trigger to abort.
116
116
117
117
If you're done with the IPC interface at the end of this method, call disconnect().
118
118
You shouldn't store the interface itself, but if you don't disconnect() you can call
119
- RootIPCReceiver:: getIPC() later.
119
+ RootIPCReceiver. getIPC() later.
120
120
*/
121
121
Logger .dp ("IPC" , "onConnect" );
122
122
try {
@@ -279,7 +279,7 @@ public void onLine(String line) {
279
279
If this method was not running on the main thread, and you wanted to use the IPC class
280
280
serially rather than using the onConnect callback, you could do it like this:
281
281
282
- IPC ipc = ipcReceiver.getIPC(30 * 1000);
282
+ IIPC ipc = ipcReceiver.getIPC(30 * 1000);
283
283
if (ipc != null) {
284
284
int remotePid = ipc.getPid();
285
285
// ...
You can’t perform that action at this time.
0 commit comments