This repository was archived by the owner on Feb 29, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed
src/main/java/com/google/devtools/cdbg/debuglets/java Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ CFLAGS += \
3333THIRD_PARTY_LIB_PATH ?= /usr/local/lib
3434THIRD_PARTY_INCLUDE_PATH ?= /usr/local/include
3535SYSTEM_LIB_PATH ?= /usr/lib/x86_64-linux-gnu
36- ASM_JAR_PATH ?= /usr/lib/asm-6 .0/lib/asm-6 .0.jar
37- ASM_COMMONS_JAR_PATH ?= /usr/lib/asm-6 .0/lib/asm-commons-6 .0.jar
38- ASM_UTIL_JAR_PATH ?= /usr/lib/asm-6 .0/lib/asm-util-6 .0.jar
36+ ASM_JAR_PATH ?= /usr/lib/asm-7 .0/lib/asm-7 .0.jar
37+ ASM_COMMONS_JAR_PATH ?= /usr/lib/asm-7 .0/lib/asm-commons-7 .0.jar
38+ ASM_UTIL_JAR_PATH ?= /usr/lib/asm-7 .0/lib/asm-util-7 .0.jar
3939GOOGLE_API_JAVA_CLIENT_PATH ?= /usr/lib/google-api-java-client
4040JARJAR_PATH ?= ../../build/jarjar.jar
4141JAVA_BUILD ?= maven
Original file line number Diff line number Diff line change 1111 <dependency >
1212 <groupId >org.ow2.asm</groupId >
1313 <artifactId >asm</artifactId >
14- <version >6 .0</version >
14+ <version >7 .0</version >
1515 </dependency >
1616 <dependency >
1717 <groupId >org.ow2.asm</groupId >
1818 <artifactId >asm-commons</artifactId >
19- <version >6 .0</version >
19+ <version >7 .0</version >
2020 </dependency >
2121 <dependency >
2222 <groupId >org.ow2.asm</groupId >
2323 <artifactId >asm-util</artifactId >
24- <version >6 .0</version >
24+ <version >7 .0</version >
2525 </dependency >
2626 <dependency >
2727 <groupId >com.google.api-client</groupId >
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ class IndexerClassVisitor extends ClassVisitor {
8484 private String classSignature ;
8585
8686 public IndexerClassVisitor (String resourcePath ) {
87- super (Opcodes .ASM6 );
87+ super (Opcodes .ASM7 );
8888 this .resourcePath = resourcePath ;
8989 }
9090
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ class MapperClassVisitor extends ClassVisitor {
8989 private boolean isSyntheticClass ;
9090
9191 public MapperClassVisitor () {
92- super (Opcodes .ASM6 );
92+ super (Opcodes .ASM7 );
9393 }
9494
9595 @ Override
@@ -125,7 +125,7 @@ public MethodVisitor visitMethod(
125125 final String descriptor ,
126126 final String signature ,
127127 final String [] exceptions ) {
128- return new MethodVisitor (Opcodes .ASM6 ) {
128+ return new MethodVisitor (Opcodes .ASM7 ) {
129129 @ Override
130130 public void visitMethodInsn (
131131 int opcode ,
Original file line number Diff line number Diff line change 1111 <dependency >
1212 <groupId >org.ow2.asm</groupId >
1313 <artifactId >asm</artifactId >
14- <version >6 .0</version >
14+ <version >7 .0</version >
1515 </dependency >
1616 <dependency >
1717 <groupId >com.google.guava</groupId >
You can’t perform that action at this time.
0 commit comments