Apache9 commented on a change in pull request #2317:
URL: https://github.com/apache/hbase/pull/2317#discussion_r477175910
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/TableDescriptors.java
##########
@@ -31,7 +31,7 @@
/**
* @return TableDescriptor for tablename
*/
- TableDescriptor get(final TableName tableName) throws IOException;
+ TableDescriptor get(TableName tableName) throws IOException;
Review comment:
In the interface the final is useless, you are free to not use final
when actually implementing the method, and there is no difference for callers.
So just remove it.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]