I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 3da6ccfb authored by zzz's avatar zzz
Browse files

make runRouter() public

parent 444ba474
No related branches found
No related tags found
No related merge requests found
......@@ -399,10 +399,12 @@ public class Router implements RouterClock.ClockShiftListener {
public RouterContext getContext() { return _context; }
/**
* Initializes the RouterContext.
* This must be called after instantiation.
* Starts the threads. Does not install updates.
* Most users will just call main() instead.
* @since public as of 0.9 for Android and other embedded uses
*/
void runRouter() {
public void runRouter() {
if (_isAlive)
throw new IllegalStateException();
startupStuff();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment