mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
readability
This commit is contained in:
parent
3d53c2584a
commit
5ab801cad2
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ public class TorNetworkNode extends NetworkNode {
|
||||||
|
|
||||||
// check if the user wants to provide his own torrc file
|
// check if the user wants to provide his own torrc file
|
||||||
String torrcFile = System.getProperty(CONFIG_TORRCFILE);
|
String torrcFile = System.getProperty(CONFIG_TORRCFILE);
|
||||||
if(null != torrcFile) {
|
if(torrcFile != null) {
|
||||||
try {
|
try {
|
||||||
override = new Torrc(new FileInputStream(new File(torrcFile)));
|
override = new Torrc(new FileInputStream(new File(torrcFile)));
|
||||||
} catch(IOException e) {
|
} catch(IOException e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue