Make InternalChangeQuery.query public so it can be used by plugins

Change-Id: I83ca1ef41ab0ba7728ae60e075d6a7986cc91d50
This commit is contained in:
David Pursehouse 2015-11-24 17:15:04 +09:00
parent 6beb31af10
commit 82a48b54d8

View File

@ -123,7 +123,7 @@ public class InternalChangeQuery {
return query(and(topic(topic), open()));
}
private List<ChangeData> query(Predicate<ChangeData> p) throws OrmException {
public List<ChangeData> query(Predicate<ChangeData> p) throws OrmException {
try {
return qp.queryChanges(p).changes();
} catch (QueryParseException e) {