Skip to content

Commit 10e11ef

Browse files
committed
Add javadoc to make alexandria life easier.
1 parent 434f338 commit 10e11ef

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

app/src/main/java/com/fox2code/mmm/installer/InstallerInitializer.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,19 @@ public static String peekMagiskPath() {
5959
return InstallerInitializer.MAGISK_PATH;
6060
}
6161

62+
/**
63+
* Note: All mirrors are read only on latest magisk
64+
*/
6265
public static String peekMirrorPath() {
6366
return InstallerInitializer.MAGISK_PATH == null ? null :
6467
InstallerInitializer.MAGISK_PATH + "/.magisk/mirror";
6568
}
6669

70+
/**
71+
* Note: Used to detect which modules are currently loaded.
72+
* <p>
73+
* For read/write only "/data/adb/modules" should be used
74+
*/
6775
public static String peekModulesPath() {
6876
return InstallerInitializer.MAGISK_PATH == null ? null :
6977
InstallerInitializer.MAGISK_PATH + "/.magisk/modules";

0 commit comments

Comments
 (0)