mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 21:41:24 +07:00
[projects] patches a cosmetic issue in ASM bytecode printer (IDEA-166121)
This commit is contained in:
13
build/asm/4_textifier_transient_method.patch
Normal file
13
build/asm/4_textifier_transient_method.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
Index: org/objectweb/asm/util/Textifier.java
|
||||
===================================================================
|
||||
--- org/objectweb/asm/util/Textifier.java
|
||||
+++ org/objectweb/asm/util/Textifier.java
|
||||
@@ -425,7 +425,7 @@
|
||||
}
|
||||
|
||||
buf.append(tab);
|
||||
- appendAccess(access & ~Opcodes.ACC_VOLATILE);
|
||||
+ appendAccess(access & ~(Opcodes.ACC_VOLATILE|Opcodes.ACC_TRANSIENT)); //[JB: IDEA-166121]
|
||||
if ((access & Opcodes.ACC_NATIVE) != 0) {
|
||||
buf.append("native ");
|
||||
}
|
||||
@@ -42,6 +42,7 @@
|
||||
<patch dir="${src.dir}" strip="0" patchfile="1_version_check.patch" failonerror="true"/>
|
||||
<patch dir="${src.dir}" strip="0" patchfile="2_coverage_fix.patch" failonerror="true"/>
|
||||
<patch dir="${src.dir}" strip="0" patchfile="3_api_version.patch" failonerror="true"/>
|
||||
<patch dir="${src.dir}" strip="0" patchfile="4_textifier_transient_method.patch" failonerror="true"/>
|
||||
<delete file="${src.dir}/org/objectweb/asm/optimizer/ModuleInfoBndPlugin.java" quiet="true"/>
|
||||
</target>
|
||||
|
||||
|
||||
BIN
lib/asm-all.jar
BIN
lib/asm-all.jar
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user