HBASE-26916 Fix missing braces warnings in DefaultVisibilityExpressionResolver (#4313)

Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
(cherry picked from commit c4ff355915)
This commit is contained in:
Duo Zhang 2022-04-03 22:42:17 +08:00
parent 235308d8bf
commit d4bba4fba2
1 changed files with 5 additions and 2 deletions

View File

@ -98,7 +98,9 @@ public class DefaultVisibilityExpressionResolver implements VisibilityExpression
} catch (IOException e) {
LOG.error("Error scanning 'labels' table", e);
} finally {
if (scanner != null) scanner.close();
if (scanner != null) {
scanner.close();
}
}
} catch (IOException ioe) {
LOG.error("Failed reading 'labels' tags", ioe);
@ -111,12 +113,13 @@ public class DefaultVisibilityExpressionResolver implements VisibilityExpression
LOG.warn("Error closing 'labels' table", ioe);
}
}
if (connection != null)
if (connection != null) {
try {
connection.close();
} catch (IOException ioe) {
LOG.warn("Failed close of temporary connection", ioe);
}
}
}
}