src/share/classes/com/sun/tools/javap/InstructionDetailWriter.java

changeset 1521
71f35e4b93a5
parent 815
d17f37522154
child 2525
2eb010b6cb22
     1.1 --- a/src/share/classes/com/sun/tools/javap/InstructionDetailWriter.java	Wed Jan 23 20:57:40 2013 +0000
     1.2 +++ b/src/share/classes/com/sun/tools/javap/InstructionDetailWriter.java	Wed Jan 23 13:27:24 2013 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -42,10 +42,13 @@
    1.11          LOCAL_VAR_TYPES("localVariableTypes"),
    1.12          SOURCE("source"),
    1.13          STACKMAPS("stackMaps"),
    1.14 -        TRY_BLOCKS("tryBlocks");
    1.15 +        TRY_BLOCKS("tryBlocks"),
    1.16 +        TYPE_ANNOS("typeAnnotations");
    1.17 +
    1.18          Kind(String option) {
    1.19              this.option = option;
    1.20          }
    1.21 +
    1.22          final String option;
    1.23      }
    1.24  

mercurial