issue#20 removed excessives parenthesis

This commit is contained in:
Didier Clermonté 2016-06-14 16:32:06 +02:00
parent 598ba9ade1
commit c01468afd4

View File

@ -78,15 +78,15 @@ public class SibaManager
try try
{ {
if ((fileToSave == null) || !(fileToSave.exists())) if ((fileToSave == null) || !fileToSave.exists())
{ {
throw new SibaException(BUNDLE.getString("sourceNotExist.text")); throw new SibaException(BUNDLE.getString("sourceNotExist.text"));
} }
else if (!(fileToSave.isDirectory())) else if (!fileToSave.isDirectory())
{ {
throw new SibaException(BUNDLE.getString("NotDirectorySource.text")); throw new SibaException(BUNDLE.getString("NotDirectorySource.text"));
} }
else if (!(target.isDirectory())) else if (!target.isDirectory())
{ {
throw new SibaException(BUNDLE.getString("NotDirectoryTarget.text")); throw new SibaException(BUNDLE.getString("NotDirectoryTarget.text"));
} }