Complete methods modifier.
This commit is contained in:
parent
9b5cd7ac75
commit
db93acb84c
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
package com.a.eye.skywalking.context;
|
||||
|
||||
/**
|
||||
* Created by wusheng on 2017/2/17.
|
||||
*/
|
||||
public class TraceContext {
|
||||
}
|
||||
Loading…
Reference in New Issue