提交 94e2819d 编写于 作者: A ascrutae

Fix compile error

上级 13421da7
......@@ -69,7 +69,7 @@ public class CallChainTree {
}
}
public void saveToHbase() throws IOException {
public void saveToHbase() throws IOException, InterruptedException {
List<Put> chainInfoPuts = new ArrayList<Put>();
for (Map.Entry<String, ChainInfo> entry : combineChains.entrySet()) {
Put put = new Put(entry.getKey().getBytes());
......
......@@ -67,7 +67,7 @@ public class CallChainTreeNode {
return new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create().toJson(this);
}
public void saveSummaryResultToHBase() {
public void saveSummaryResultToHBase() throws IOException, InterruptedException {
List<Put> puts = new ArrayList<Put>();
for (Map.Entry<String, ChainNodeSpecificMinSummary> entry : chainNodeContainer.entrySet()) {
Put put = new Put(entry.getKey().getBytes());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册