From: Leif Åstrand
Date: Fri, 31 May 2013 06:44:56 +0000 (+0300)
Subject: Fix stale info in javadoc for accessSynchronously (#11897)
X-Git-Tag: 7.1.0~90^2~9
X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=587e10b92dbaf3e90b288ead55a5b83f54743bd2;p=vaadin-framework.git
Fix stale info in javadoc for accessSynchronously (#11897)
Change-Id: I0d562a5f617850e2e862f86758dbca0fc4c947a0
---
diff --git a/server/src/com/vaadin/server/VaadinSession.java b/server/src/com/vaadin/server/VaadinSession.java
index b4afc914eb..9ef3d33195 100644
--- a/server/src/com/vaadin/server/VaadinSession.java
+++ b/server/src/com/vaadin/server/VaadinSession.java
@@ -1127,10 +1127,6 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable {
* {@link #accessSynchronously(Runnable)} blocks while waiting for the lock
* to be available whereas {@link #access(Runnable)} defers the task to a
* later point in time.
- * If this session is currently not locked,
- * {@link #accessSynchronously(Runnable)} runs the task right away whereas
- * {@link #access(Runnable)} defers the task to a later point in time unless
- * there are UIs with automatic push enabled.
*
*
*
diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java
index 706f7c436b..d1d8dd1df1 100644
--- a/server/src/com/vaadin/ui/UI.java
+++ b/server/src/com/vaadin/ui/UI.java
@@ -1123,10 +1123,6 @@ public abstract class UI extends AbstractSingleComponentContainer implements
* {@link #accessSynchronously(Runnable)} blocks while waiting for the lock
* to be available whereas {@link #access(Runnable)} defers the task to a
* later point in time.
- * If the session is currently not locked,
- * {@link #accessSynchronously(Runnable)} runs the task right away whereas
- * {@link #access(Runnable)} defers the task to a later point in time unless
- * there are UIs with automatic push enabled.
*
*
*