Cleanup (formatting)

master
Roman Shevchenko 6 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; 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) {

Loading…
Cancel
Save