Skip to content

Commit a82c15e

Browse files
committed
Rollback optimimzation for unique search terms to satisfy japicmp types compatibility
1 parent 0859587 commit a82c15e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/kohsuke/github/GHSearchBuilder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import org.apache.commons.lang3.StringUtils;
44

5-
import java.util.LinkedHashSet;
6-
import java.util.Set;
5+
import java.util.ArrayList;
6+
import java.util.List;
77

88
import javax.annotation.CheckForNull;
99
import javax.annotation.Nonnull;
@@ -19,7 +19,7 @@
1919
public abstract class GHSearchBuilder<T> extends GHQueryBuilder<T> {
2020

2121
/** The terms. */
22-
protected final Set<String> terms = new LinkedHashSet<>();
22+
protected final List<String> terms = new ArrayList<String>();
2323

2424
/**
2525
* Data transfer object that receives the result of search.

0 commit comments

Comments
 (0)