< prev index next >

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

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

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 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

@@ -76,12 +76,11 @@
  * @author Gordon Hirsch
  * @author James McIlree
  * @since  1.3
  */
 public interface ReferenceType
-    extends Type, Comparable<ReferenceType>, Accessible
-{
+    extends Type, Comparable<ReferenceType>, Accessible {
 
     /**
      * Gets the fully qualified name of this type. The returned name
      * is formatted as it might appear in a Java programming langauge
      * declaration for objects of this type.

@@ -613,11 +612,11 @@
      * been prepared.
      *
      * @since 1.4
      */
     List<Location> allLineLocations(String stratum, String sourceName)
-                             throws AbsentInformationException;
+        throws AbsentInformationException;
 
     /**
      * Returns a List containing all {@link Location} objects
      * that map to the given line number.
      * <P>

@@ -848,7 +847,6 @@
      *
      * @see #constantPoolCount()
      * @since 1.6
      */
      byte[] constantPool();
-
 }
< prev index next >