Skip to content

Commit

Permalink
adding api tests for lang props
Browse files Browse the repository at this point in the history
  • Loading branch information
ScorpioBroker committed Jul 27, 2023
1 parent d3fb3f6 commit bcd98b5
Show file tree
Hide file tree
Showing 2 changed files with 415 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import java.util.ArrayList;
import java.util.Set;

import com.google.common.collect.Lists;

import io.smallrye.mutiny.tuples.Tuple2;

public class LanguageQueryTerm implements Serializable {
Expand All @@ -16,7 +18,8 @@ public class LanguageQueryTerm implements Serializable {
public LanguageQueryTerm() {
// for serialization
}
ArrayList<Tuple2<Set<String>, Float>> entries;

ArrayList<Tuple2<Set<String>, Float>> entries = Lists.newArrayList();

public ArrayList<Tuple2<Set<String>, Float>> getEntries() {
return entries;
Expand Down

0 comments on commit bcd98b5

Please sign in to comment.