Fix compile error
This commit is contained in:
parent
13421da7b8
commit
94e2819d00
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in New Issue