From: Artur Signell Date: Tue, 28 Feb 2012 16:29:44 +0000 (+0200) Subject: Corrected invalid method reference in javadoc X-Git-Tag: 7.0.0.alpha2~415 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=618b1548e30da6fcfda274c698961a78a47fbe54;p=vaadin-framework.git Corrected invalid method reference in javadoc --- diff --git a/src/com/vaadin/terminal/gwt/client/Connector.java b/src/com/vaadin/terminal/gwt/client/Connector.java index 6f568d8fd9..eee525865b 100644 --- a/src/com/vaadin/terminal/gwt/client/Connector.java +++ b/src/com/vaadin/terminal/gwt/client/Connector.java @@ -41,7 +41,7 @@ public interface Connector { /** * Returns the id for this connector. This must always be what has been set - * in {@link #init(String, ApplicationConnection)} and must never change. + * in {@link #doInit(String, ApplicationConnection)} and must never change. * * @return The id for the connector. */ @@ -51,7 +51,7 @@ public interface Connector { * Gets ApplicationConnection instance that created this connector. * * @return The ApplicationConnection as set by - * {@link #init(String, ApplicationConnection)} + * {@link #doInit(String, ApplicationConnection)} */ public ApplicationConnection getConnection();