mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 00:32:53 +00:00
Android: Clean up outdated comment in AfterDirectoryInitializationRunner
This commit is contained in:
parent
4281606838
commit
846f5f6671
@ -12,20 +12,11 @@ public class AfterDirectoryInitializationRunner
|
|||||||
private Observer<DirectoryInitializationState> mObserver;
|
private Observer<DirectoryInitializationState> mObserver;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes a Runnable after directory initialization has finished.
|
* Executes a Runnable once directory initialization finishes.
|
||||||
*
|
*
|
||||||
* If this is called when directory initialization already is done,
|
* If this is called when directory initialization already has finished, the Runnable will
|
||||||
* the Runnable will be executed immediately. If this is called before
|
* be executed immediately. If this is called before directory initialization has finished,
|
||||||
* directory initialization is done, the Runnable will be executed
|
* the Runnable will be executed after directory initialization finishes.
|
||||||
* after directory initialization finishes successfully, or never
|
|
||||||
* in case directory initialization doesn't finish successfully.
|
|
||||||
*
|
|
||||||
* Calling this function multiple times per object is not supported.
|
|
||||||
*
|
|
||||||
* If abortOnFailure is true and external storage was not found, a message
|
|
||||||
* will be shown to the user and the Runnable will not run. If it is false,
|
|
||||||
* the attempt to run the Runnable will never be aborted, and the Runnable
|
|
||||||
* is guaranteed to run if directory initialization ever finishes.
|
|
||||||
*
|
*
|
||||||
* If the passed-in activity gets destroyed before this operation finishes,
|
* If the passed-in activity gets destroyed before this operation finishes,
|
||||||
* it will be automatically canceled.
|
* it will be automatically canceled.
|
||||||
@ -44,20 +35,11 @@ public class AfterDirectoryInitializationRunner
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes a Runnable after directory initialization has finished.
|
* Executes a Runnable once directory initialization finishes.
|
||||||
*
|
*
|
||||||
* If this is called when directory initialization already is done,
|
* If this is called when directory initialization already has finished, the Runnable will
|
||||||
* the Runnable will be executed immediately. If this is called before
|
* be executed immediately. If this is called before directory initialization has finished,
|
||||||
* directory initialization is done, the Runnable will be executed
|
* the Runnable will be executed after directory initialization finishes.
|
||||||
* after directory initialization finishes successfully, or never
|
|
||||||
* in case directory initialization doesn't finish successfully.
|
|
||||||
*
|
|
||||||
* Calling this function multiple times per object is not supported.
|
|
||||||
*
|
|
||||||
* If abortOnFailure is true and external storage was not found, a message
|
|
||||||
* will be shown to the user and the Runnable will not run. If it is false,
|
|
||||||
* the attempt to run the Runnable will never be aborted, and the Runnable
|
|
||||||
* is guaranteed to run if directory initialization ever finishes.
|
|
||||||
*/
|
*/
|
||||||
public void runWithoutLifecycle(Runnable runnable)
|
public void runWithoutLifecycle(Runnable runnable)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user