HBASE-22845 Revert MetaTableAccessor#makePutFromTableState access to public (#489)

HBCK2 is dependent on it
This commit is contained in:
Sakthi 2019-08-13 11:26:21 -07:00 committed by Michael Stack
parent 8c1edb3bba
commit e69af5affe
1 changed files with 1 additions and 1 deletions

View File

@ -1655,7 +1655,7 @@ public class MetaTableAccessor {
* 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;