mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Renamed a method and expanded the javadoc to be clear that it blocks.
This commit is contained in:
@@ -46,7 +46,7 @@ class AndroidExecutorImpl implements AndroidExecutor {
|
||||
}
|
||||
}
|
||||
|
||||
public <V> V run(Callable<V> c) throws InterruptedException,
|
||||
public <V> V call(Callable<V> c) throws InterruptedException,
|
||||
ExecutionException {
|
||||
startIfNecessary();
|
||||
Future<V> f = new FutureTask<V>(c);
|
||||
|
||||
Reference in New Issue
Block a user