Commit 94e2819d authored by ascrutae's avatar ascrutae
Browse files

Fix compile error

parent 13421da7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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());
+1 −1
Original line number Diff line number Diff line
@@ -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());