I have imported an existing project into Eclipse workspace.
I have this line of code inside my existing Project.
String eod = Props.getProperty("client.eod", 5);
What is the exact meaning of the argument 5 in this call?
My guess is that if there is no property with the name client.eod whether it will set the value 5 to it. Could anybody confirm or disprove it?
Yes, You are correct. But it is
getProperty(String, String)