[Bug309042] Improved test code coverage and other mundane issues.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf / src / org / eclipse / linuxtools / tmf / component / TmfDataProvider.java
index 37ce86700ad46abe7da1f6240e23ce1c876613a8..745f5b45ae5e7254fc71bb45ed247b5ff73d0120 100644 (file)
@@ -263,14 +263,14 @@ public abstract class TmfDataProvider<T extends TmfData> extends TmfComponent im
 
        @TmfSignalHandler
        public void startSynch(TmfStartSynchSignal signal) {
-               synchronized(fSynchDepth) {
+               synchronized(this) {
                        fSynchDepth++;
                }
        }
 
        @TmfSignalHandler
        public void endSynch(TmfEndSynchSignal signal) {
-               synchronized(fSynchDepth) {
+               synchronized(this) {
                        fSynchDepth--;
                        if (fSynchDepth == 0) {
                                fireRequests();
This page took 0.024205 seconds and 5 git commands to generate.