Cleanup (formatting)
This commit is contained in:
@@ -28,15 +28,11 @@ public class GenericType {
|
|||||||
this.value = value;
|
this.value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public GenericType(GenericType other, int arrayDim) {
|
private GenericType(GenericType other, int arrayDim) {
|
||||||
this.type = other.type;
|
this(other.type, arrayDim, other.value);
|
||||||
this.value = other.value;
|
enclosingClasses.addAll(other.enclosingClasses);
|
||||||
|
arguments.addAll(other.arguments);
|
||||||
this.enclosingClasses.addAll(other.enclosingClasses);
|
wildcards.addAll(other.wildcards);
|
||||||
this.arguments.addAll(other.arguments);
|
|
||||||
this.wildcards.addAll(other.wildcards);
|
|
||||||
|
|
||||||
this.arrayDim = arrayDim;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public GenericType(String signature) {
|
public GenericType(String signature) {
|
||||||
|
|||||||
Reference in New Issue
Block a user