Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Khouzam2018-08-10 19:07:49 +0000
committerMatthew Khouzam2018-09-14 19:34:37 +0000
commitbe0147ad042735949b92d52022961f8460845682 (patch)
treeab7091eadfeb93b8528a44019d678d0c083eec84
parent33be16c3ef50b6308674466b3060af747b529c4f (diff)
downloadorg.eclipse.tracecompass.incubator-be0147ad042735949b92d52022961f8460845682.tar.gz
org.eclipse.tracecompass.incubator-be0147ad042735949b92d52022961f8460845682.tar.xz
org.eclipse.tracecompass.incubator-be0147ad042735949b92d52022961f8460845682.zip
opentracing: update javadoc
Fix some things that are false Change-Id: I7e4e4c2fd361bfd74f03326c6c09ff014c3b1964 Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/127312 Tested-by: CI Bot Reviewed-by: Katherine Nadeau <katherine.nadeau@ericsson.com>
-rw-r--r--tracetypes/org.eclipse.tracecompass.incubator.opentracing.core/src/org/eclipse/tracecompass/incubator/internal/opentracing/core/event/OpenTracingField.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/tracetypes/org.eclipse.tracecompass.incubator.opentracing.core/src/org/eclipse/tracecompass/incubator/internal/opentracing/core/event/OpenTracingField.java b/tracetypes/org.eclipse.tracecompass.incubator.opentracing.core/src/org/eclipse/tracecompass/incubator/internal/opentracing/core/event/OpenTracingField.java
index e7216da44..47c669b2f 100644
--- a/tracetypes/org.eclipse.tracecompass.incubator.opentracing.core/src/org/eclipse/tracecompass/incubator/internal/opentracing/core/event/OpenTracingField.java
+++ b/tracetypes/org.eclipse.tracecompass.incubator.opentracing.core/src/org/eclipse/tracecompass/incubator/internal/opentracing/core/event/OpenTracingField.java
@@ -273,16 +273,16 @@ public class OpenTracingField {
/**
* Get the span start time
*
- * @return the start time or null
+ * @return the start time
*/
public Long getStartTime() {
return fStartTime;
}
/**
- * Get the event duration if applicable
+ * Get the event duration
*
- * @return the duration or null
+ * @return the duration
*/
public Long getDuration() {
return fDuration;
@@ -293,8 +293,7 @@ public class OpenTracingField {
*
* @return a map of the tags and their field names
*/
- @Nullable
- public Map<String, Object> getTags() {
+ public @Nullable Map<String, Object> getTags() {
return fTags;
}

Back to the top