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:
parent
235308d8bf
commit
d4bba4fba2
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue