Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
asm
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mbenson
asm
Commits
23337ecf
Commit
23337ecf
authored
Apr 21, 2018
by
Eric Bruneton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the version number of some external dependencies, and fix some Javadoc warnings.
parent
e88ebe87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
6 deletions
+21
-6
asm-commons/src/main/java/org/objectweb/asm/commons/InstructionAdapter.java
...in/java/org/objectweb/asm/commons/InstructionAdapter.java
+18
-3
build.gradle
build.gradle
+3
-3
No files found.
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
Markdown
is supported
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