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

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

Console: fixup param name

parent d683f0d9
No related branches found
No related tags found
No related merge requests found
......@@ -317,7 +317,7 @@ public class RouterConsoleRunner implements RouterApp {
* Package private for ConfigServiceHandler
* @since 0.9.48 pulled out of startTrayApp
*/
static boolean isSystrayEnabled(I2PAppContext _context) {
static boolean isSystrayEnabled(I2PAppContext context) {
// default false except on OSX and non-service windows,
// and on Linux KDE and LXDE
// Xubuntu XFCE works but doesn't look very good
......@@ -330,7 +330,7 @@ public class RouterConsoleRunner implements RouterApp {
//"XFCE".equals(xdg) ||
"KDE".equals(xdg) ||
"LXDE".equals(xdg));
return _context.getProperty(PROP_DTG_ENABLED, dflt);
return context.getProperty(PROP_DTG_ENABLED, dflt);
}
private void startTrayApp() {
......
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