Skip to content

Commit

Permalink
HBASE-22845 Revert MetaTableAccessor#makePutFromTableState access to …
Browse files Browse the repository at this point in the history
…public (#489)

HBCK2 is dependent on it
  • Loading branch information
the-sakthi authored and saintstack committed Aug 13, 2019
1 parent 69946d1 commit 6444158
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1712,7 +1712,7 @@ private static void updateTableState(Connection connection, TableState state) th
* Construct PUT for given state
* @param state new state
*/
private static Put makePutFromTableState(TableState state, long ts) {
public static Put makePutFromTableState(TableState state, long ts) {
Put put = new Put(state.getTableName().getName(), ts);
put.addColumn(getTableFamily(), getTableStateColumn(), state.convert().toByteArray());
return put;
Expand Down

0 comments on commit 6444158

Please sign in to comment.