tmf/lttng: Fix newly-introduced Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / TmfTimestampFormat.java
index 1e271e376dfd169afa79bd3b18eb9289af342d5e..e6661fb226420eac7fb195e0de1894e809f6739a 100644 (file)
@@ -188,12 +188,12 @@ public class TmfTimestampFormat extends SimpleDateFormat {
     /**
      * The default timestamp pattern
      */
-    public static final String DEFAULT_TIME_PATTERN = "HH:mm:ss.SSS_CCC_NNN"; //$NON-NLS-1$
+    public static final String DEFAULT_TIME_PATTERN = "HH:mm:ss.SSS CCC NNN"; //$NON-NLS-1$
 
     /**
      * The LTTng 0.x legacy timestamp format
      */
-    public static final String DEFAULT_INTERVAL_PATTERN = "TTT.SSS_CCC_NNN"; //$NON-NLS-1$
+    public static final String DEFAULT_INTERVAL_PATTERN = "TTT.SSS CCC NNN"; //$NON-NLS-1$
 
     // Fractions of seconds supported patterns
     private static final String DOT_RE = "\\.";                 //$NON-NLS-1$
@@ -235,12 +235,15 @@ public class TmfTimestampFormat extends SimpleDateFormat {
      */
     protected String fSupplPatternLetters = "TSCN"; //$NON-NLS-1$
 
-    /**
+    /*
      * The bracketing symbols used to mitigate the risk of a format string
      * that contains escaped sequences that would conflict with our format
      * extension.
      */
+    /** The open bracket symbol */
     protected String fOpenBracket   = "[&"; //$NON-NLS-1$
+
+    /** The closing bracket symbol */
     protected String fCloseBracket  = "&]"; //$NON-NLS-1$
 
     // ------------------------------------------------------------------------
This page took 0.037643 seconds and 5 git commands to generate.