Polishing.

This commit is contained in:
Peter-Josef Meisch 2022-02-17 07:50:57 +01:00
parent 9fa1d1ddbc
commit d34b00e436
No known key found for this signature in database
GPG Key ID: DE108246970C7708

View File

@ -18,7 +18,6 @@ package org.springframework.data.elasticsearch.core.suggest;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import org.springframework.data.annotation.PersistenceConstructor;
import org.springframework.lang.Nullable; import org.springframework.lang.Nullable;
/** /**
@ -40,7 +39,6 @@ public class Completion {
this.input = new String[0]; this.input = new String[0];
} }
@PersistenceConstructor
public Completion(String[] input) { public Completion(String[] input) {
this.input = input; this.input = input;
} }