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

View File

@ -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 {

View File

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