Cleanup (formatting)

master
Roman Shevchenko 5 years ago
parent 4e0e391798
commit e9cae6c720
  1. 14
      src/org/jetbrains/java/decompiler/struct/gen/generics/GenericType.java

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

Loading…
Cancel
Save