Cleanup (formatting)

This commit is contained in:
Roman Shevchenko
2018-12-17 13:50:41 +01:00
parent 4e0e391798
commit e9cae6c720

View File

@@ -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) {