adding space in print ln

This commit is contained in:
Nirothipan 2017-06-22 15:14:04 +05:30
parent e49e57beb3
commit f141836cba

View File

@ -178,7 +178,7 @@ public class TryIt {
* @param hint - property name
*/
private void sysPropertyError(String property, String hint) {
System.out.println("Unable to get the" + property + "property of your system (" + hint + ")");
System.out.println("Unable to get the " + property + " property of your system (" + hint + ")");
System.exit(1);
}