Complete methods modifier.

This commit is contained in:
wusheng 2017-02-17 11:36:00 +08:00
parent 9b5cd7ac75
commit db93acb84c
2 changed files with 2 additions and 9 deletions

View File

@ -150,7 +150,7 @@ public class Span {
* @return the Span, for chaining
* @see Span#log(String)
*/
Span log(Map<String, ?> fields){
public Span log(Map<String, ?> fields){
logs.add(new LogData(System.currentTimeMillis(), fields));
return this;
}
@ -170,7 +170,7 @@ public class Span {
* @param event the event value; often a stable identifier for a moment in the Span lifecycle
* @return the Span, for chaining
*/
Span log(String event){
public Span log(String event){
log(Collections.singletonMap("event", event));
return this;
}

View File

@ -1,7 +0,0 @@
package com.a.eye.skywalking.context;
/**
* Created by wusheng on 2017/2/17.
*/
public class TraceContext {
}