Skip to content
Snippets Groups Projects
Commit 1b19be09 authored by Jan David Mol's avatar Jan David Mol
Browse files

SW-685: Fixed variable initialisation

parent a6df5fcd
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ public class jOTDBaccess implements jOTDBaccessInterface
private String itsDBpassword="";
private String itsDB="";
private String itsDBhost="";
private String itsDBport=0;
private String itsDBport="5432"; // 5432 is the default Postgres port. (n.b.: 6432 is the default pgbounce port).
private String itsRMIhost="";
private int itsRMIobjectPort=0;
private int itsRMIport = 0;
......
......@@ -118,7 +118,7 @@ public class jOTDBserver {
String dbHostName = "";
String dbPort = 5432;
String dbPort = "5432";
String dbUser = "postgres";
String dbPassword = "";
String serverHostName = "";
......
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