< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/BranchInstruction.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
  */
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.

@@ -28,12 +28,11 @@
  * Abstract super class for branching instructions like GOTO, IFEQ, etc..
  * Branch instructions may have a variable length, namely GOTO, JSR,
  * LOOKUPSWITCH and TABLESWITCH.
  *
  * @see InstructionList
- * @version $Id$
- * @LastModified: Jun 2019
+ * @LastModified: Jan 2020
  */
 public abstract class BranchInstruction extends Instruction implements InstructionTargeter {
 
     private int index; // Branch target relative to this instruction
     private InstructionHandle target; // Target object in instruction list
< prev index next >