Skip to content

Commit

Permalink
Rollback optimimzation for unique search terms to satisfy japicmp typ…
Browse files Browse the repository at this point in the history
…es compatibility
  • Loading branch information
kgromov committed Nov 12, 2023
1 parent 0859587 commit a82c15e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/kohsuke/github/GHSearchBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import org.apache.commons.lang3.StringUtils;

import java.util.LinkedHashSet;
import java.util.Set;
import java.util.ArrayList;
import java.util.List;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
Expand All @@ -19,7 +19,7 @@
public abstract class GHSearchBuilder<T> extends GHQueryBuilder<T> {

/** The terms. */
protected final Set<String> terms = new LinkedHashSet<>();
protected final List<String> terms = new ArrayList<String>();

/**
* Data transfer object that receives the result of search.
Expand Down

0 comments on commit a82c15e

Please sign in to comment.