]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed spelling mistake in API #11741
authorJohn Ahlroos <john@vaadin.com>
Fri, 31 May 2013 06:15:20 +0000 (09:15 +0300)
committerJohn Ahlroos <john@vaadin.com>
Fri, 31 May 2013 06:17:39 +0000 (09:17 +0300)
Change-Id: I1bf04abd4c49a452f00fb0ab07b20f82ad6d62a2

client/src/com/vaadin/client/ui/VRichTextArea.java
client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java

index 7ed6e7c78a0f24d0a54219320864a714858ac591..8a6ba3fc1e02815d7dd80fd2fa1667b665bb5729 100644 (file)
@@ -395,7 +395,7 @@ public class VRichTextArea extends Composite implements Field, KeyPressHandler,
      * 
      * @return cleaned html string
      */
-    public String getSanitazedValue() {
+    public String getSanitizedValue() {
         BrowserInfo browser = BrowserInfo.get();
         String result = getValue();
         if (browser.isFirefox()) {
index 8135777c0a50618913eb44f7fbeea220584209e0..20dfc74c69daf1b2c2f9c59729d8f87109307a47 100644 (file)
@@ -102,7 +102,7 @@ public class RichTextAreaConnector extends AbstractFieldConnector implements
     @Override
     public void flush() {
         if (getConnection() != null && getConnectorId() != null) {
-            final String html = getWidget().getSanitazedValue();
+            final String html = getWidget().getSanitizedValue();
             if (!html.equals(cachedValue)) {
                 getConnection().updateVariable(getConnectorId(), "text", html,
                         getState().immediate);