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 stack
parent 56e54bc1d2
commit ba55315aab
1 changed files with 1 additions and 1 deletions

View File

@ -1715,7 +1715,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;