< prev index next >

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

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

@@ -42,10 +42,11 @@
  * @author Gordon Hirsch
  * @author James McIlree
  * @since  1.3
  */
 public interface InterfaceType extends ReferenceType {
+
     /**
      * Gets the interfaces directly extended by this interface.
      * The returned list contains only those interfaces this
      * interface has declared to be extended.
      *

@@ -185,13 +186,14 @@
      * @throws VMCannotBeModifiedException if the VirtualMachine is read-only - see {@link VirtualMachine#canBeModified()}.
      *
      * @since 1.8
      */
     default Value invokeMethod(ThreadReference thread, Method method,
-                       List<? extends Value> arguments, int options)
+                               List<? extends Value> arguments, int options)
             throws InvalidTypeException,
-            ClassNotLoadedException,
-            IncompatibleThreadStateException,
-            InvocationException {
+                   ClassNotLoadedException,
+                   IncompatibleThreadStateException,
+                   InvocationException
+    {
         throw new UnsupportedOperationException();
     }
 }
< prev index next >