Changed equality testing for FileNode.

This commit is contained in:
Winston Li
2014-12-04 19:21:26 +00:00
parent e52ef90e13
commit 4ec7d70eff
8 changed files with 44 additions and 32 deletions
@@ -31,6 +31,7 @@ public class SnapshotPushPostbackHandler extends AbstractHandler {
if (request.getMethod().equals("POST") && request.getPathInfo().endsWith("postback")) {
String contents = getContentsOfReader(request.getReader());
String projectName = request.getRequestURI().split("/")[1];
System.out.println("Postback received for project: " + projectName);
SnapshotPushPostbackContents postbackContents = new SnapshotPushPostbackContents(writeLatexDataSource, projectName, contents);
try {
postbackContents.processPostback();