PageLinks: Remove unused toChangeQuery method

Change-Id: I505513f04cd0bda5c3905b95503092d3a20b88b7
This commit is contained in:
David Pursehouse
2016-05-11 18:42:09 +09:00
parent 951f930f57
commit d07623f2d6

View File

@@ -107,11 +107,6 @@ public class PageLinks {
return QUERY + KeyUtil.encode(query);
}
public static String toChangeQuery(String query, String start) {
int s = Integer.parseInt(start);
return QUERY + KeyUtil.encode(query) + (s > 0 ? "," + s : "");
}
public static String toProjectDashboard(Project.NameKey name, String id) {
return PROJECTS + name.get() + DASHBOARDS + id;
}