]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add a clarifying note to an extension example. (#12062)
authorAnna Koskinen <Ansku@users.noreply.github.com>
Wed, 5 Aug 2020 08:15:19 +0000 (11:15 +0300)
committerGitHub <noreply@github.com>
Wed, 5 Aug 2020 08:15:19 +0000 (11:15 +0300)
documentation/gwt/gwt-extension.asciidoc

index 4e9fdec48a271cbe87a0bcd0f1f9c2ace6567ee4..53407ac47a375a02d07fe8add459b217f648f139 100644 (file)
@@ -51,6 +51,8 @@ public class CapsLockWarning extends AbstractExtension {
     public static void addTo(PasswordField field) {
         new CapsLockWarning().extend(field);
     }
+    
+    // NOTE: you only need one of the above, not all of them
 }
 ----