Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 31644a15 authored by Xavier Ducrohet's avatar Xavier Ducrohet
Browse files

Fix the SDK build.

Proper link format is <package>.className#methodName(). Not
sure why this worked before.

Change-Id: I23f7f73b735dde47aa2fdc5a0198a16e379ad741
parent 9c738b97
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -50,8 +50,8 @@ public interface StorageEventListener {
     * Called when a volume has changed state
     * @param label the system defined label for the volume.
     * @param path the filesystem path for the volume.
     * @param oldState the old state as returned by {@link android.os.Environment.getExternalStorageState()}.
     * @param newState the old state as returned by {@link android.os.Environment.getExternalStorageState()}.
     * @param oldState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
     * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
     */
    public void onVolumeStateChanged(String label, String path, String oldState, String newState);
}