Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Change type to generic
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Oct 15, 2013
1 parent c6792c1 commit 2f67456
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -308,8 +308,8 @@ public void queryStats() {
/**
* Facilitate unit testing. Will be no-op if in client(GWT compiled) mode.
*/
protected void setStatesForTest(ArrayList<DocumentNode> sortedNodes,
TreeMap<DocumentId, DocumentNode> nodes) {
protected void setStatesForTest(List<DocumentNode> sortedNodes,
Map<DocumentId, DocumentNode> nodes) {
if (!GWT.isClient()) {
this.filteredNodes = sortedNodes;
this.nodes = nodes;
Expand Down

0 comments on commit 2f67456

Please sign in to comment.