Fix screens inherited from PaginatedProjectScreen

After GWT upgrade: I3f009f3ef all screens inherited from
PaginatedProjectScreen are broken because match token wasn't
initialized and caused a NPE.

Change-Id: I525b25193a870aef4f19068d3731d68035799ea3
This commit is contained in:
David Ostrovsky
2016-09-22 17:50:56 +02:00
parent 142506494e
commit 1a76ed900c

View File

@@ -21,7 +21,7 @@ import com.google.gwt.http.client.URL;
abstract class PaginatedProjectScreen extends ProjectScreen {
protected int pageSize;
protected String match;
protected String match = "";
protected int start;
PaginatedProjectScreen(Project.NameKey toShow) {