From 32806ce6fc18156ba4e2e6f07c32996c4b6c6f45 Mon Sep 17 00:00:00 2001 From: Woonduk Kang Date: Thu, 11 Oct 2012 10:17:08 +0000 Subject: [PATCH] =?UTF-8?q?[=EA=B0=95=EC=9A=B4=EB=8D=95]=20[LUCYSUS-1744]?= =?UTF-8?q?=20rpc=20call=20tree=20=EA=B0=9D=EC=B2=B4=20=EC=9D=B4=EB=8F=99.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@773 84d0f5b1-2673-498c-a247-62c4ff18d310 --- .../nhn/hippo/web/calltree/RPCRequest.java | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 src/main/java/com/nhn/hippo/web/calltree/RPCRequest.java diff --git a/src/main/java/com/nhn/hippo/web/calltree/RPCRequest.java b/src/main/java/com/nhn/hippo/web/calltree/RPCRequest.java deleted file mode 100644 index 8587bdcb7..000000000 --- a/src/main/java/com/nhn/hippo/web/calltree/RPCRequest.java +++ /dev/null @@ -1,46 +0,0 @@ -package com.nhn.hippo.web.calltree; - -/** - * - * @author netspider - * - */ -public class RPCRequest { - private final String id; - private final RPC from; - private final RPC to; - private int callCount = 1; - - public RPCRequest(RPC from, RPC to) { - this.from = from; - this.to = to; - this.id = from.getId() + to.getId(); - } - - public void increaseCallCount() { - callCount++; - } - - public String getId() { - return id; - } - - public RPC getFrom() { - return from; - } - - public RPC getTo() { - return to; - } - - public int getCallCount() { - return callCount; - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder(); - sb.append("{from=").append(from).append(", to=").append(to).append(", cc=").append(callCount).append("}"); - return sb.toString(); - } -}