src/share/classes/com/sun/tools/javac/jvm/ClassReader.java

changeset 2260
fb870c70e774
parent 2136
7f6481e5fe3a
child 2375
3a2ebbad5911
     1.1 --- a/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java	Tue Feb 04 18:49:58 2014 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java	Thu Feb 06 21:03:03 2014 +0000
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1999, 2014, 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 @@ -116,10 +116,6 @@
    1.11       */
    1.12      boolean lintClassfile;
    1.13  
    1.14 -    /** Switch: allow default methods
    1.15 -     */
    1.16 -    boolean allowDefaultMethods;
    1.17 -
    1.18      /** Switch: preserve parameter names from the variable table.
    1.19       */
    1.20      public boolean saveParameterNames;
    1.21 @@ -307,7 +303,6 @@
    1.22          allowVarargs     = source.allowVarargs();
    1.23          allowAnnotations = source.allowAnnotations();
    1.24          allowSimplifiedVarargs = source.allowSimplifiedVarargs();
    1.25 -        allowDefaultMethods = source.allowDefaultMethods();
    1.26  
    1.27          saveParameterNames = options.isSet("save-parameter-names");
    1.28          cacheCompletionFailure = options.isUnset("dev");

mercurial