From 57b7335f647dcb8343d35b975b138c361de28326 Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Fri, 31 May 2013 09:15:20 +0300 Subject: [PATCH] Fixed spelling mistake in API #11741 Change-Id: I1bf04abd4c49a452f00fb0ab07b20f82ad6d62a2 --- client/src/com/vaadin/client/ui/VRichTextArea.java | 2 +- .../vaadin/client/ui/richtextarea/RichTextAreaConnector.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.5