移动源码位置

This commit is contained in:
wusheng 2016-07-08 15:14:59 +08:00
parent 5b87d7a2c4
commit d503797457
1 changed files with 4 additions and 5 deletions

View File

@ -42,6 +42,10 @@ public class AckSpan extends AbstractDataSerializable {
*/
private String exceptionStack = "";
/**
* 埋点入参列表,补充时触发
*/
private Map<String, String> paramters = new HashMap<String, String>();
public AckSpan(Span spanData) {
this.traceId = spanData.getTraceId();
@ -52,11 +56,6 @@ public class AckSpan extends AbstractDataSerializable {
this.exceptionStack = spanData.getExceptionStack();
}
/**
* 埋点入参列表,补充时触发
*/
private Map<String, String> paramters = new HashMap<String, String>();
public AckSpan() {
}