Skip to content

Commit 4692bc5

Browse files
author
Vicente Romero
committedJan 10, 2020
8236841: compact constructor parameters are always final
Reviewed-by: mcimadamore
1 parent 2c7c802 commit 4692bc5

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -3746,7 +3746,7 @@ protected JCClassDecl recordDeclaration(JCModifiers mods, Comment dc) {
37463746
ListBuffer<JCVariableDecl> tmpParams = new ListBuffer<>();
37473747
for (JCVariableDecl param : headerFields) {
37483748
tmpParams.add(F.at(param)
3749-
.VarDef(F.Modifiers(Flags.PARAMETER | param.mods.flags & Flags.VARARGS | param.mods.flags & Flags.FINAL),
3749+
.VarDef(F.Modifiers(Flags.PARAMETER | param.mods.flags & Flags.VARARGS),
37503750
param.name, param.vartype, null));
37513751
}
37523752
methDef.params = tmpParams.toList();

‎test/langtools/tools/javac/records/RecordCompilationTests.java

+11
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,17 @@ public void testReturnInCanonical_Compact() {
429429
assertOK("record R(int x) { public R { Runnable r = () -> { return; };} }");
430430
}
431431

432+
public void testArgumentsAreNotFinalInCompact() {
433+
assertOK(
434+
"""
435+
record R(int x) {
436+
public R {
437+
x++;
438+
}
439+
}
440+
""");
441+
}
442+
432443
public void testNoNativeMethods() {
433444
assertFail("compiler.err.mod.not.allowed.here", "record R(int x) { # }",
434445
"public native R {}");

0 commit comments

Comments
 (0)
Please sign in to comment.