spacing for readability

pull/42/head
Zlatin Balevsky 2020-03-19 16:40:19 +00:00
parent 45659f0dca
commit d93dbbeb8b
1 changed files with 3 additions and 3 deletions

View File

@ -107,11 +107,11 @@ public class ConfigurationServlet extends HttpServlet {
File f = new File(s);
f = f.getCanonicalFile();
if (!f.exists())
throw new Exception(Util._t("Bad input") + ":" + Util._t("{0} does not exist",s));
throw new Exception(Util._t("Bad input") + " : " + Util._t("{0} does not exist",s));
if (!f.isDirectory())
throw new Exception(Util._t("Bad input") + ":" + Util._t("{0} is not a directory",s));
throw new Exception(Util._t("Bad input") + " : " + Util._t("{0} is not a directory",s));
if (!f.canWrite())
throw new Exception(Util._t("Bad input") + ":" + Util._t("{0} not writeable",s));
throw new Exception(Util._t("Bad input") + " : " + Util._t("{0} not writeable",s));
return f;
}