8044866: Fix raw and unchecked lint warnings in asm
Reviewed-by: darcy
This commit is contained in:
parent
07289a2d98
commit
6c8c5619ed
@ -550,6 +550,7 @@ public class InsnList {
|
||||
}
|
||||
|
||||
// this class is not generified because it will create bridges
|
||||
@SuppressWarnings("rawtypes")
|
||||
private final class InsnListIterator implements ListIterator {
|
||||
|
||||
AbstractInsnNode next;
|
||||
|
@ -399,6 +399,7 @@ public class MethodNode extends MethodVisitor {
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public AnnotationVisitor visitParameterAnnotation(final int parameter,
|
||||
final String desc, final boolean visible) {
|
||||
AnnotationNode an = new AnnotationNode(desc);
|
||||
|
@ -131,6 +131,7 @@ public class Analyzer<V extends Value> implements Opcodes {
|
||||
* @throws AnalyzerException
|
||||
* if a problem occurs during the analysis.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public Frame<V>[] analyze(final String owner, final MethodNode m)
|
||||
throws AnalyzerException {
|
||||
if ((m.access & (ACC_ABSTRACT | ACC_NATIVE)) != 0) {
|
||||
|
@ -112,6 +112,7 @@ public class Frame<V extends Value> {
|
||||
* @param nStack
|
||||
* the maximum stack size of the frame.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public Frame(final int nLocals, final int nStack) {
|
||||
this.values = (V[]) new Value[nLocals + nStack];
|
||||
this.locals = nLocals;
|
||||
|
@ -1,12 +1,12 @@
|
||||
Path: .
|
||||
Working Copy Root Path: /hudson/jobs/objectweb-pull/workspace/asm-svn-2014-05-27
|
||||
Working Copy Root Path: /hudson/jobs/objectweb-pull/workspace/asm-svn-2014-06-19
|
||||
URL: file:///svnroot/asm/trunk/asm
|
||||
Repository Root: file:///svnroot/asm
|
||||
Repository UUID: 271bd773-ee82-43a6-9b2b-1890ed8ce7f9
|
||||
Revision: 1748
|
||||
Revision: 1750
|
||||
Node Kind: directory
|
||||
Schedule: normal
|
||||
Last Changed Author: ebruneton
|
||||
Last Changed Rev: 1747
|
||||
Last Changed Date: 2014-05-24 10:22:13 +0200 (Sat, 24 May 2014)
|
||||
Last Changed Author: forax
|
||||
Last Changed Rev: 1750
|
||||
Last Changed Date: 2014-06-06 00:31:02 +0200 (Fri, 06 Jun 2014)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user