This commit is contained in:
Clément Fournier
2023-04-29 18:04:48 +02:00
parent 75fe7f9f41
commit 580bac6c90
2 changed files with 5 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ package net.sourceforge.pmd.lang.java.symbols.internal.asm;
class InvalidTypeSignatureException extends IllegalArgumentException {
public InvalidTypeSignatureException(String s) {
InvalidTypeSignatureException(String s) {
super(s);
}
}

View File

@@ -313,16 +313,16 @@ final class TypeSigParser {
}
JTypeMirror pop() {
assert this.type !=null;
assert this.type != null;
JTypeMirror t = this.type;
this.type=null;
this.type = null;
return t;
}
List<JTypeMirror> popList() {
assert this.list !=null;
assert this.list != null;
List<JTypeMirror> l = this.list;
this.list=null;
this.list = null;
return l;
}