X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.tmf.core%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Ftmf%2Fcore%2Fevent%2FTmfTimestampFormat.java;h=e6661fb226420eac7fb195e0de1894e809f6739a;hb=6f4e8ec0ae816788e83accc0de316f7bd783c35c;hp=dac4ee3a5dffd4966ac437ddf92b2f4511c23e97;hpb=73ecde7e60983031eeab2c961701b97b10f2616d;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/TmfTimestampFormat.java b/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/TmfTimestampFormat.java index dac4ee3a5d..e6661fb226 100644 --- a/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/TmfTimestampFormat.java +++ b/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/event/TmfTimestampFormat.java @@ -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$ // ------------------------------------------------------------------------