1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-03-15 11:52:32 +00:00

Renamed method.

This commit is contained in:
CalDescent 2022-02-20 10:44:38 +00:00
parent 7307844bee
commit 21b4b494e7
2 changed files with 2 additions and 2 deletions
src/main/java/org/qortal

@ -185,7 +185,7 @@ public class Network {
}
// Attempt to set up UPnP. All errors are ignored.
if (Settings.getInstance().isuPnPEnabled()) {
if (Settings.getInstance().isUPnPEnabled()) {
UPnP.openPortTCP(Settings.getInstance().getListenPort());
}
else {

@ -631,7 +631,7 @@ public class Settings {
return this.bindAddress;
}
public boolean isuPnPEnabled() {
public boolean isUPnPEnabled() {
return this.uPnPEnabled;
}