Revision: 7899
Author: [email protected]
Date: Thu Apr  8 16:05:40 2010
Log: Remove extraneous debugging info, fix warning.

http://code.google.com/p/google-web-toolkit/source/detail?r=7899

Modified:
/changes/jat/csproto/dev/core/src/com/google/gwt/dev/shell/ShmFutexTransport.java
 /changes/jat/csproto/plugins/common/LoadJsniMessage.cpp
 /changes/jat/csproto/plugins/common/LoadModuleMessage.cpp

=======================================
--- /changes/jat/csproto/dev/core/src/com/google/gwt/dev/shell/ShmFutexTransport.java Thu Apr 8 07:10:55 2010 +++ /changes/jat/csproto/dev/core/src/com/google/gwt/dev/shell/ShmFutexTransport.java Thu Apr 8 16:05:40 2010
@@ -73,7 +73,7 @@
     }

     @Override
-    public int read(byte[] b, int off, int len) throws IOException {
+    public int read(byte[] b, int off, int len) {
       int totalRead = 0;
       while (len > 0) {
         int n = serverToClientBuf.limit() - serverToClientBuf.position();
@@ -251,7 +251,7 @@
     }

     @Override
-    public int read(byte[] b, int off, int len) throws IOException {
+    public int read(byte[] b, int off, int len) {
       int totalRead = 0;
       while (len > 0) {
         int n = clientToServerBuf.limit() - clientToServerBuf.position();
=======================================
--- /changes/jat/csproto/plugins/common/LoadJsniMessage.cpp Thu Apr 8 13:25:31 2010 +++ /changes/jat/csproto/plugins/common/LoadJsniMessage.cpp Thu Apr 8 16:05:40 2010
@@ -26,6 +26,5 @@
 LoadJsniMessage* LoadJsniMessage::receive(HostChannel& channel) {
   HostChannelReader reader(channel);
   std::string js;
- Debug::log(Debug::Debugging) << "LoadJsniMessage::receive" << Debug::flush;
   return channel.readString(js) ? new LoadJsniMessage(js) : 0;
 }
=======================================
--- /changes/jat/csproto/plugins/common/LoadModuleMessage.cpp Thu Apr 8 13:25:31 2010 +++ /changes/jat/csproto/plugins/common/LoadModuleMessage.cpp Thu Apr 8 16:05:40 2010
@@ -46,12 +46,8 @@
     return false;
   }
   if (!writer.end()) return false;
-  Debug::log(Debug::Debugging) << "  finished writing LoadModule"
-      << Debug::flush;
scoped_ptr<ReturnMessage> ret(channel.reactToMessagesWhileWaitingForReturn(
       handler));
-  Debug::log(Debug::Debugging) << "  finished waiting for return"
-      << Debug::flush;
   if (!ret.get()) {
     handler->loadModuleException(Value());
     return false;

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to