Skip to content
Snippets Groups Projects
Commit 9332797d authored by felmer's avatar felmer
Browse files

LMS-597 some console outputs removed

SVN: 8512
parent abee6b0d
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,6 @@ public abstract class AbstractAsyncCallback<T> implements AsyncCallback<T> ...@@ -78,7 +78,6 @@ public abstract class AbstractAsyncCallback<T> implements AsyncCallback<T>
public void onFailure(Throwable caught) public void onFailure(Throwable caught)
{ {
callbackListener.onFailureOf(getThis(), caught); callbackListener.onFailureOf(getThis(), caught);
System.out.println(caught);
final String msg; final String msg;
if (caught instanceof InvocationException) if (caught instanceof InvocationException)
{ {
......
...@@ -39,7 +39,6 @@ public final class SessionContextCallback extends AbstractAsyncCallback<SessionC ...@@ -39,7 +39,6 @@ public final class SessionContextCallback extends AbstractAsyncCallback<SessionC
@Override @Override
public void process(SessionContext sessionContext) public void process(SessionContext sessionContext)
{ {
System.out.println("SessionContextCallback.process() "+sessionContext);
RootPanel rootPanel = RootPanel.get(); RootPanel rootPanel = RootPanel.get();
rootPanel.clear(); rootPanel.clear();
Component widget; Component widget;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment