< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/Location.java

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

@@ -23,12 +23,10 @@
  * questions.
  */
 
 package com.sun.jdi;
 
-import java.util.List;
-
 /**
  * A point within the executing code of the target VM.
  * Locations are used to identify the current position of
  * a suspended thread (analogous to an instruction pointer or
  * program counter register in native programs). They are also used

@@ -126,11 +124,10 @@
      * @throws AbsentInformationException if the source name is not
      * known
      */
     String sourceName() throws AbsentInformationException;
 
-
     /**
      * Gets an identifing name for the source corresponding to
      * this location. Interpretation of this string is the
      * responsibility of the source repository mechanism.
      * <P>

@@ -152,12 +149,11 @@
      * @throws AbsentInformationException if the source name is not
      * known
      *
      * @since 1.4
      */
-    String sourceName(String stratum)
-                        throws AbsentInformationException;
+    String sourceName(String stratum) throws AbsentInformationException;
 
     /**
      * Gets the path to the source corresponding to this
      * location.
      * <P>

@@ -171,11 +167,10 @@
      * @throws AbsentInformationException if the source name is not
      * known
      */
     String sourcePath() throws AbsentInformationException;
 
-
     /**
      * Gets the path to the source corresponding to this
      * location. Interpretation of this string is the
      * responsibility of the source repository mechanism.
      * <P>

@@ -204,12 +199,11 @@
      * @throws AbsentInformationException if the source name is not
      * known
      *
      * @since 1.4
      */
-    String sourcePath(String stratum)
-                         throws AbsentInformationException;
+    String sourcePath(String stratum) throws AbsentInformationException;
 
     /**
      * Gets the line number of this Location.
      * <P>
      * This method is equivalent to
< prev index next >