This commit is contained in:
Andrea Cavalli 2023-03-03 00:16:23 +01:00
parent 9b36d831c6
commit 8cdeec91c9
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ import it.cavallium.data.generator.plugin.ComputedTypeSuper;
import it.cavallium.data.generator.plugin.ComputedVersion;
import it.cavallium.stream.SafeDataInput;
import it.cavallium.stream.SafeDataOutput;
import java.io.IOException;
import java.io.NotSerializableException;
import java.util.Objects;
import java.util.stream.Stream;
@ -64,7 +63,7 @@ public class GenSerializerSuperX extends ClassGenerator {
method.addParameter(ParameterSpec.builder(int.class, "id").build());
method.beginControlFlow("if (id < 0 || id >= $L)", max);
method.addStatement("throw new new $T(id)", IndexOutOfBoundsException.class);
method.addStatement("throw new $T(id)", IndexOutOfBoundsException.class);
method.endControlFlow();
classBuilder.addMethod(method.build());