Cleanup (formatting)

This commit is contained in:
Roman Shevchenko
2018-12-17 13:50:41 +01:00
parent 50ea327601
commit e0fcccebb8

View File

@@ -28,15 +28,11 @@ public class GenericType {
this.value = value;
}
public GenericType(GenericType other, int arrayDim) {
this.type = other.type;
this.value = other.value;
this.enclosingClasses.addAll(other.enclosingClasses);
this.arguments.addAll(other.arguments);
this.wildcards.addAll(other.wildcards);
this.arrayDim = arrayDim;
private GenericType(GenericType other, int arrayDim) {
this(other.type, arrayDim, other.value);
enclosingClasses.addAll(other.enclosingClasses);
arguments.addAll(other.arguments);
wildcards.addAll(other.wildcards);
}
public GenericType(String signature) {