From: John Ahlroos Date: Fri, 31 May 2013 06:15:20 +0000 (+0300) Subject: Fixed spelling mistake in API #11741 X-Git-Tag: 7.1.0~90^2~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=57b7335f647dcb8343d35b975b138c361de28326;p=vaadin-framework.git Fixed spelling mistake in API #11741 Change-Id: I1bf04abd4c49a452f00fb0ab07b20f82ad6d62a2 --- diff --git a/client/src/com/vaadin/client/ui/VRichTextArea.java b/client/src/com/vaadin/client/ui/VRichTextArea.java index 7ed6e7c78a..8a6ba3fc1e 100644 --- a/client/src/com/vaadin/client/ui/VRichTextArea.java +++ b/client/src/com/vaadin/client/ui/VRichTextArea.java @@ -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()) { diff --git a/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java b/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java index 8135777c0a..20dfc74c69 100644 --- a/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java +++ b/client/src/com/vaadin/client/ui/richtextarea/RichTextAreaConnector.java @@ -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);