Skip to content

Commit 3a2d426

Browse files
committedJul 3, 2024
8334726: Remove accidentally exposed individual methods from Class-File API
Reviewed-by: asotona
1 parent f187c92 commit 3a2d426

File tree

7 files changed

+7
-37
lines changed

7 files changed

+7
-37
lines changed
 

‎src/java.base/share/classes/java/lang/classfile/attribute/ModuleAttribute.java

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 2024, 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
@@ -153,7 +153,7 @@ static ModuleAttribute of(ModuleDesc moduleName,
153153
Consumer<ModuleAttributeBuilder> attrHandler) {
154154
var mb = new ModuleAttributeBuilderImpl(moduleName);
155155
attrHandler.accept(mb);
156-
return mb.build();
156+
return mb.build();
157157
}
158158

159159
/**
@@ -166,7 +166,7 @@ static ModuleAttribute of(ModuleEntry moduleName,
166166
Consumer<ModuleAttributeBuilder> attrHandler) {
167167
var mb = new ModuleAttributeBuilderImpl(moduleName);
168168
attrHandler.accept(mb);
169-
return mb.build();
169+
return mb.build();
170170
}
171171

172172
/**
@@ -319,11 +319,5 @@ default ModuleAttributeBuilder opens(PackageDesc pkge, Collection<AccessFlag> op
319319
* @return this builder
320320
*/
321321
ModuleAttributeBuilder provides(ModuleProvideInfo provides);
322-
323-
/**
324-
* Builds module attribute.
325-
* @return the module attribute
326-
*/
327-
ModuleAttribute build();
328322
}
329323
}

‎src/java.base/share/classes/java/lang/classfile/components/CodeRelabeler.java

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 2024, 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
@@ -74,12 +74,4 @@ static CodeRelabeler of(Map<Label, Label> map) {
7474
static CodeRelabeler of(BiFunction<Label, CodeBuilder, Label> mapFunction) {
7575
return new CodeRelabelerImpl(mapFunction);
7676
}
77-
78-
/**
79-
* Access method to internal re-labeling function.
80-
* @param label source label
81-
* @param codeBuilder builder to create new labels
82-
* @return target label
83-
*/
84-
Label relabel(Label label, CodeBuilder codeBuilder);
8577
}

‎src/java.base/share/classes/java/lang/classfile/constantpool/ConstantPoolBuilder.java

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 2024, 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
@@ -92,14 +92,6 @@ static ConstantPoolBuilder of() {
9292
*/
9393
boolean canWriteDirect(ConstantPool constantPool);
9494

95-
/**
96-
* Writes associated bootstrap method entries to the specified writer
97-
*
98-
* @param buf the writer
99-
* @return false when no bootstrap method entry has been written
100-
*/
101-
boolean writeBootstrapMethods(BufWriter buf);
102-
10395
/**
10496
* {@return A {@link Utf8Entry} describing the provided {@linkplain String}}
10597
* If a UTF8 entry in the pool already describes this string, it is returned;

‎src/java.base/share/classes/jdk/internal/classfile/impl/CodeRelabelerImpl.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, 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
@@ -42,7 +42,6 @@
4242

4343
public record CodeRelabelerImpl(BiFunction<Label, CodeBuilder, Label> mapFunction) implements CodeRelabeler {
4444

45-
@Override
4645
public Label relabel(Label label, CodeBuilder cob) {
4746
return mapFunction.apply(label, cob);
4847
}

‎src/java.base/share/classes/jdk/internal/classfile/impl/ModuleAttributeBuilderImpl.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 2024, 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
@@ -58,7 +58,6 @@ public ModuleAttributeBuilderImpl(ModuleDesc moduleName) {
5858
this(TemporaryConstantPool.INSTANCE.moduleEntry(TemporaryConstantPool.INSTANCE.utf8Entry(moduleName.name())));
5959
}
6060

61-
@Override
6261
public ModuleAttribute build() {
6362
return new UnboundAttribute.UnboundModuleAttribute(moduleEntry, moduleFlags, moduleVersion,
6463
requires, exports, opens, uses, provides);

‎src/java.base/share/classes/jdk/internal/classfile/impl/SplitConstantPool.java

-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ public boolean canWriteDirect(ConstantPool other) {
135135
return this == other || parent == other;
136136
}
137137

138-
@Override
139138
public boolean writeBootstrapMethods(BufWriter buf) {
140139
if (bsmSize == 0)
141140
return false;

‎src/java.base/share/classes/jdk/internal/classfile/impl/TemporaryConstantPool.java

-5
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,6 @@ public boolean canWriteDirect(ConstantPool constantPool) {
190190
return false;
191191
}
192192

193-
@Override
194-
public boolean writeBootstrapMethods(BufWriter buf) {
195-
throw new UnsupportedOperationException();
196-
}
197-
198193
@Override
199194
public void writeTo(BufWriter buf) {
200195
throw new UnsupportedOperationException();

0 commit comments

Comments
 (0)
Please sign in to comment.