We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0859587 commit a82c15eCopy full SHA for a82c15e
src/main/java/org/kohsuke/github/GHSearchBuilder.java
@@ -2,8 +2,8 @@
2
3
import org.apache.commons.lang3.StringUtils;
4
5
-import java.util.LinkedHashSet;
6
-import java.util.Set;
+import java.util.ArrayList;
+import java.util.List;
7
8
import javax.annotation.CheckForNull;
9
import javax.annotation.Nonnull;
@@ -19,7 +19,7 @@
19
public abstract class GHSearchBuilder<T> extends GHQueryBuilder<T> {
20
21
/** The terms. */
22
- protected final Set<String> terms = new LinkedHashSet<>();
+ protected final List<String> terms = new ArrayList<String>();
23
24
/**
25
* Data transfer object that receives the result of search.
0 commit comments