Format comments.

This commit is contained in:
wusheng 2017-01-13 15:40:57 +08:00
parent ee65e0023d
commit c9e90187cc
2 changed files with 14 additions and 12 deletions

View File

@ -9,15 +9,16 @@ import java.util.Map;
import static com.a.eye.skywalking.util.TraceIdUtil.isIllegalTraceId;
/**
* Ack span module <p> All fields in this class will be initialized by {@link
* com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
* Ack span module
* <p>
* All fields in this class will be initialized by {@link com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
*/
public class AckSpanModule {
private String traceId;
private String parentLevelId;
private int levelId = 0;
private long cost;
private int routeKey;
private int levelId;
private long cost;
private int routeKey;
private Map<String, String> tags;

View File

@ -9,15 +9,16 @@ import java.util.Map;
import static com.a.eye.skywalking.util.TraceIdUtil.isIllegalTraceId;
/**
* request span module <p> All fields in this class will be initialized by {@link
* com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
* request span module
* <p>
* All fields in this class will be initialized by {@link com.google.gson.Gson#fromJson(String, Class)}, ignore the un-assign values warning.
*/
public class RequestSpanModule {
private String traceId;
private String parentLevelId;
private int levelId;
private long startTime;
private int routeKey;
private String traceId;
private String parentLevelId;
private int levelId;
private long startTime;
private int routeKey;
private Map<String, String> tags;
public RequestSpan convertToGRPCModule() {