Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Jamie Mansfield
asm
Commits
23337ecf
Commit
23337ecf
authored
Apr 21, 2018
by
Eric Bruneton
Browse files
Update the version number of some external dependencies, and fix some Javadoc warnings.
parent
e88ebe87
Changes
2
Hide whitespace changes
Inline
Side-by-side
asm-commons/src/main/java/org/objectweb/asm/commons/InstructionAdapter.java
View file @
23337ecf
...
...
@@ -1005,7 +1005,12 @@ public class InstructionAdapter extends MethodVisitor {
mv
.
visitFieldInsn
(
Opcodes
.
PUTFIELD
,
owner
,
name
,
descriptor
);
}
/** @deprecated */
/**
* @param owner
* @param name
* @param descriptor
* @deprecated
*/
@Deprecated
public
void
invokevirtual
(
final
String
owner
,
final
String
name
,
final
String
descriptor
)
{
if
(
api
>=
Opcodes
.
ASM5
)
{
...
...
@@ -1027,7 +1032,12 @@ public class InstructionAdapter extends MethodVisitor {
mv
.
visitMethodInsn
(
Opcodes
.
INVOKEVIRTUAL
,
owner
,
name
,
descriptor
,
isInterface
);
}
/** @deprecated */
/**
* @param owner
* @param name
* @param descriptor
* @deprecated
*/
@Deprecated
public
void
invokespecial
(
final
String
owner
,
final
String
name
,
final
String
descriptor
)
{
if
(
api
>=
Opcodes
.
ASM5
)
{
...
...
@@ -1049,7 +1059,12 @@ public class InstructionAdapter extends MethodVisitor {
mv
.
visitMethodInsn
(
Opcodes
.
INVOKESPECIAL
,
owner
,
name
,
descriptor
,
isInterface
);
}
/** @deprecated */
/**
* @param owner
* @param name
* @param descriptor
* @deprecated
*/
@Deprecated
public
void
invokestatic
(
final
String
owner
,
final
String
name
,
final
String
descriptor
)
{
if
(
api
>=
Opcodes
.
ASM5
)
{
...
...
build.gradle
View file @
23337ecf
...
...
@@ -32,8 +32,8 @@ buildscript {
plugins
{
id
'biz.aQute.bnd.builder'
version
'3.3.0'
apply
false
}
plugins
{
id
'com.github.sherter.google-java-format'
version
'0.6'
apply
false
}
plugins
{
id
'me.champeau.gradle.jmh'
version
'0.4.
4
'
apply
false
}
plugins
{
id
'org.sonarqube'
version
'2.6'
apply
false
}
plugins
{
id
'me.champeau.gradle.jmh'
version
'0.4.
5
'
apply
false
}
plugins
{
id
'org.sonarqube'
version
'2.6
.2
'
apply
false
}
description
=
'ASM, a very small and fast Java bytecode manipulation framework'
...
...
@@ -134,7 +134,7 @@ project(':benchmarks') {
classes
.
dependsOn
"asm${version}"
}
jmh
{
jmhVersion
=
'1.
19
'
jmhVersion
=
'1.
20
'
profilers
=
[
'org.objectweb.asm.benchmarks.MemoryProfiler'
]
if
(
rootProject
.
hasProperty
(
'jmhInclude'
))
{
include
=
[
jmhInclude
]
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment