summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-06-05 18:21:44 +0300
committerArtur Signell <artur@vaadin.com>2013-06-05 18:21:44 +0300
commitfad7bf7a791db16349467ccbc508d0e472330fa0 (patch)
treeb4b9d72527b482577413049b8f7f2dd2ac8a9a3c /server
parent9100cfc70255f95982f230f29ef72dffe46027d5 (diff)
downloadvaadin-framework-fad7bf7a791db16349467ccbc508d0e472330fa0.tar.gz
vaadin-framework-fad7bf7a791db16349467ccbc508d0e472330fa0.zip
Remove DEFAULT constant as an annotation enum cannot use it (#11966)
Change-Id: I41630fec5c40c50a2925499d1f1ba23149ab0de1
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/annotations/Push.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/annotations/Push.java b/server/src/com/vaadin/annotations/Push.java
index d5e42d6f60..9965d535ba 100644
--- a/server/src/com/vaadin/annotations/Push.java
+++ b/server/src/com/vaadin/annotations/Push.java
@@ -54,6 +54,6 @@ public @interface Push {
*
* @return the transport type to use
*/
- public Transport transport() default Transport.DEFAULT;
+ public Transport transport() default Transport.WEBSOCKET;
}