jdk/src/share/classes/sun/net/httpserver/ServerImpl.java
changeset 907 11f377f9319d
parent 905 8445a646acfb
child 1247 b4c26443dee5
--- a/jdk/src/share/classes/sun/net/httpserver/ServerImpl.java	Sat Jul 19 10:27:34 2008 +0100
+++ b/jdk/src/share/classes/sun/net/httpserver/ServerImpl.java	Wed Jul 23 12:05:19 2008 +0100
@@ -349,10 +349,8 @@
                             }
                         }
                     }
-                } catch (CancelledKeyException  e) {
+                } catch (Exception e) {
                     logger.log (Level.FINER, "Dispatcher (3)", e);
-                } catch (IOException e) {
-                    logger.log (Level.FINER, "Dispatcher (4)", e);
                 }
             }
         }
@@ -364,10 +362,10 @@
                 Exchange t = new Exchange (chan, protocol, conn);
                 executor.execute (t);
             } catch (HttpError e1) {
-                logger.log (Level.FINER, "Dispatcher (5)", e1);
+                logger.log (Level.FINER, "Dispatcher (4)", e1);
                 conn.close();
             } catch (IOException e) {
-                logger.log (Level.FINER, "Dispatcher (6)", e);
+                logger.log (Level.FINER, "Dispatcher (5)", e);
                 conn.close();
             }
         }