Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 659531569
  • Loading branch information
cushon authored and sgjesse committed Aug 5, 2024
1 parent c7dbf2c commit 43b2457
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 145 deletions.
5 changes: 3 additions & 2 deletions jdk11/src/java.base/share/classes/java/lang/VersionProps.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,12 @@ class VersionProps {
"";

private static String VENDOR_URL_BUG =
"http://b.corp.google.com/createIssue?component=32554";
"https://issuetracker.google.com/issues/new?component=317603";


// This field is read by HotSpot
private static String VENDOR_URL_VM_BUG =
"http://b.corp.google.com/createIssue?component=32554";
"https://issuetracker.google.com/issues/new?component=317603";

static {
init();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import com.google.devtools.java.asm.GoogleOpcodes;
import org.objectweb.asm.Opcodes;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
Expand Down Expand Up @@ -306,7 +306,7 @@ private void transferClassFileJarEntry(JarEntry inEntry, InputStream in, JarOutp
if (isGeneratedOutputEntryUnderSelection(outputEntryName)) {
ClassWriter cw = new ClassWriter(0);
ClassVisitor cv =
new AnnotationFilterClassVisitor(OMITTED_ANNOTATIONS, cw, GoogleOpcodes.LATEST);
new AnnotationFilterClassVisitor(OMITTED_ANNOTATIONS, cw, Opcodes.ASM9);
outputClassNode.accept(cv);
byte[] outBytes = cw.toByteArray();
JarEntry outJarEntry = createJarEntry(outputEntryName, outBytes);
Expand Down
141 changes: 0 additions & 141 deletions tools/java/com/google/testing/apianalyzer/DesugarJdkLibsApis.java

This file was deleted.

0 comments on commit 43b2457

Please sign in to comment.