diff -r fcebccb14d4b -r fb870c70e774 src/share/classes/com/sun/tools/javac/jvm/ClassReader.java --- a/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java Tue Feb 04 18:49:58 2014 -0800 +++ b/src/share/classes/com/sun/tools/javac/jvm/ClassReader.java Thu Feb 06 21:03:03 2014 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2014, 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 @@ -116,10 +116,6 @@ */ boolean lintClassfile; - /** Switch: allow default methods - */ - boolean allowDefaultMethods; - /** Switch: preserve parameter names from the variable table. */ public boolean saveParameterNames; @@ -307,7 +303,6 @@ allowVarargs = source.allowVarargs(); allowAnnotations = source.allowAnnotations(); allowSimplifiedVarargs = source.allowSimplifiedVarargs(); - allowDefaultMethods = source.allowDefaultMethods(); saveParameterNames = options.isSet("save-parameter-names"); cacheCompletionFailure = options.isUnset("dev");