[errorprone] Add parenthesis to clarify operator precedence

This fixes OperatorPrecedence error raised by errorprone on FS#findHook.

Change-Id: Ia15f61902c7deff7328c1afa066fc53152949bbf
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2019-10-25 15:15:03 +02:00
parent 6a39da37fe
commit 6ba8f37ab7
1 changed files with 4 additions and 4 deletions

View File

@ -1787,8 +1787,8 @@ public File findHook(Repository repository, String hookName) {
}
File hookFile = new File(hookDir, hookName);
if (hookFile.isAbsolute()) {
if (!hookFile.exists() || FS.DETECTED.supportsExecute()
&& !FS.DETECTED.canExecute(hookFile)) {
if (!hookFile.exists() || (FS.DETECTED.supportsExecute()
&& !FS.DETECTED.canExecute(hookFile))) {
return null;
}
} else {
@ -1803,8 +1803,8 @@ public File findHook(Repository repository, String hookName) {
if (fs == null) {
fs = FS.DETECTED;
}
if (!Files.exists(hookPath) || fs.supportsExecute()
&& !fs.canExecute(hookPath.toFile())) {
if (!Files.exists(hookPath) || (fs.supportsExecute()
&& !fs.canExecute(hookPath.toFile()))) {
return null;
}
hookFile = hookPath.toFile();