diff -r 18a4438eb690 -r 89829dd3cc54 src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassWriter.java --- a/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassWriter.java Wed Dec 06 14:33:33 2017 +0000 +++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassWriter.java Fri Nov 03 10:01:08 2017 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2017, 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 @@ -1815,15 +1815,8 @@ acount += writeExtraClassAttributes(c); poolbuf.appendInt(JAVA_MAGIC); - - if (c.owner.kind == MDL) { - // temporarily overide to force use of v53 for module-info.class - poolbuf.appendChar(0); - poolbuf.appendChar(53); - } else { - poolbuf.appendChar(target.minorVersion); - poolbuf.appendChar(target.majorVersion); - } + poolbuf.appendChar(target.minorVersion); + poolbuf.appendChar(target.majorVersion); writePool(c.pool);