[강운덕] [LUCYSUS-1744] spanid, parentSpanid를 long에서 int로 변경함.

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1146 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Woonduk Kang
2013-02-04 10:20:02 +00:00
parent 6d0897fdb2
commit e7e39aeede
10 changed files with 40 additions and 62 deletions
@@ -27,7 +27,7 @@ public class SubSpan implements Thriftable {
private final List<HippoAnnotation> annotations = new ArrayList<HippoAnnotation>(5);
private long nextSpanId = -1;
private int nextSpanId = -1;
private int depth = -1;
public SubSpan(Span parentSpan) {
@@ -122,11 +122,11 @@ public class SubSpan implements Thriftable {
this.depth = depth;
}
public long getNextSpanId() {
public int getNextSpanId() {
return nextSpanId;
}
public void setNextSpanId(long nextSpanId) {
public void setNextSpanId(int nextSpanId) {
this.nextSpanId = nextSpanId;
}