< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/connect/spi/Connection.java

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -30,18 +30,18 @@
 /**
  * A connection between a debugger and a target VM which it debugs.
  *
  * <p> A Connection represents a bi-directional communication channel
  * between a debugger and a target VM. A Connection is created when
- * {@link com.sun.jdi.connect.spi.TransportService TransportService}
+ * {@link TransportService TransportService}
  * establishes a connection and successfully handshakes with a target
  * VM. A TransportService implementation provides a reliable
  * JDWP packet transportation service and consequently a Connection
  * provides a reliable flow of JDWP packets between the debugger
  * and the target VM. A Connection is stream oriented, that is, the
  * JDWP packets written to a connection are read by the target VM
- * in the order in which they were written. Similiarly packets written
+ * in the order in which they were written. Similarly packets written
  * to a Connection by the target VM are read by the debugger in the
  * order in which they were written.
  *
  * <p> A connection is either open or closed. It is open upon creation,
  * and remains open until it is closed. Once closed, it remains closed,

@@ -53,11 +53,10 @@
  * although at most one thread may be reading and at most one thread may
  * be writing at any given time.
  *
  * @since 1.5
  */
-
 public abstract class Connection {
 
     /**
      * Reads a packet from the target VM.
      *
< prev index next >