Github user ebortnikov commented on a diff in the pull request:
https://github.com/apache/incubator-omid/pull/20#discussion_r166407100
--- Diff:
hbase-client/src/main/java/org/apache/omid/transaction/TTable.java ---
@@ -293,15 +293,11 @@ public void delete(Transaction tx, Delete delete)
throws IOException {
}
- /**
- * Transactional version of {@link HTableInterface#put(Put put)}
- *
- * @param put an instance of Put
- * @param tx an instance of transaction to be used
- * @throws IOException if a remote or network exception occurs.
- */
- public void put(Transaction tx, Put put) throws IOException {
+ interface UpdateMetaData {
--- End diff --
What is the scope of this interface? Why is it package-level?
---