Description
Looking at the test code I see
HTable table = new HTable(...) try { ... test code ... } finally { table.close(); }
The try-finally, while well meaning seems to hide the actual failure.
I'll just remove that.
Looking at the test code I see
HTable table = new HTable(...) try { ... test code ... } finally { table.close(); }
The try-finally, while well meaning seems to hide the actual failure.
I'll just remove that.