Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2014-04-23 22:24:45 +0000
committerEugene Tarassov2014-04-23 22:24:45 +0000
commit4035f23daa775e5dc74ff1e148be4397bca8fae5 (patch)
tree39ef0e799edfca6709b66f364020c269b30f7ae2
parent0bd7f7f2b346ac79ccb5402df36f81de49b47879 (diff)
downloadorg.eclipse.tcf-4035f23daa775e5dc74ff1e148be4397bca8fae5.tar.gz
org.eclipse.tcf-4035f23daa775e5dc74ff1e148be4397bca8fae5.tar.xz
org.eclipse.tcf-4035f23daa775e5dc74ff1e148be4397bca8fae5.zip
TCF Core: fixed missing @since 1.2 tag
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/util/TCFDataCache.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/util/TCFDataCache.java b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/util/TCFDataCache.java
index 7032ed135..6d0b38bf2 100644
--- a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/util/TCFDataCache.java
+++ b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/util/TCFDataCache.java
@@ -65,6 +65,9 @@ public abstract class TCFDataCache<V> implements Runnable {
this.channel = channel;
}
+ /**
+ * @since 1.2
+ */
public void post() {
if (posted) return;
if (waiting_cnt == 0) return;

Back to the top