[PATCH 5 of 6] Debug/typo fixes
Wald Commits
scm-commit at wald.intevation.org
Wed Jul 10 14:17:01 CEST 2013
# HG changeset patch
# User Felix Wolfsteller <felix.wolfsteller at intevation.de>
# Date 1373449400 -7200
# Node ID 685c2be0541c70c7966322ee6469005f633c306e
# Parent 4875ca46fdcd8ecc5645fb68d66a033c812798f9
Debug/typo fixes.
diff -r 4875ca46fdcd -r 685c2be0541c gwt-client/src/main/java/org/dive4elements/river/client/client/ui/WQInputPanel.java
--- a/gwt-client/src/main/java/org/dive4elements/river/client/client/ui/WQInputPanel.java Wed Jul 10 11:42:31 2013 +0200
+++ b/gwt-client/src/main/java/org/dive4elements/river/client/client/ui/WQInputPanel.java Wed Jul 10 11:43:20 2013 +0200
@@ -1811,14 +1811,14 @@
new AsyncCallback<WQInfoObject[]>() {
@Override
public void onFailure(Throwable caught) {
- GWT.log("Could not recieve wq informations.");
+ GWT.log("Could not receive wq informations.");
SC.warn(caught.getMessage());
}
@Override
public void onSuccess(WQInfoObject[] wqi) {
int num = wqi != null ? wqi.length :0;
- GWT.log("Recieved " + num + " wq informations.");
+ GWT.log("Received " + num + " wq informations.");
if (num == 0) {
return;
diff -r 4875ca46fdcd -r 685c2be0541c gwt-client/src/main/java/org/dive4elements/river/client/client/ui/WQSimpleArrayPanel.java
--- a/gwt-client/src/main/java/org/dive4elements/river/client/client/ui/WQSimpleArrayPanel.java Wed Jul 10 11:42:31 2013 +0200
+++ b/gwt-client/src/main/java/org/dive4elements/river/client/client/ui/WQSimpleArrayPanel.java Wed Jul 10 11:43:20 2013 +0200
@@ -265,13 +265,13 @@
new AsyncCallback<WQInfoObject[]>() {
@Override
public void onFailure(Throwable caught) {
- GWT.log("Could not recieve wq informations.");
+ GWT.log("Could not receive wq informations.");
}
@Override
public void onSuccess(WQInfoObject[] wqi) {
int num = wqi != null ? wqi.length :0;
- GWT.log("Recieved " + num + " wq informations.");
+ GWT.log("Received " + num + " wq informations.");
if (num == 0) {
return;
More information about the Dive4elements-commits
mailing list