Fix compile error

This commit is contained in:
ascrutae 2016-03-07 10:27:33 +08:00
parent 13421da7b8
commit 94e2819d00
2 changed files with 2 additions and 2 deletions

View File

@ -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());

View File

@ -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());