Skip to content

Commit

Permalink
changelog enum is now DELETED not DELETE.
Browse files Browse the repository at this point in the history
  • Loading branch information
GraylinKim committed Apr 1, 2013
1 parent 6ba19a5 commit a0c438d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/gov/nysenate/openleg/scripts/Push.java
Expand Up @@ -22,7 +22,8 @@

public class Push {
private static Logger logger = Logger.getLogger(Push.class);
private static Pattern changePattern = Pattern.compile("\\s*(.*?)\\s+(NEW|DELETE|MODIFIED)");
private static Pattern changePattern = Pattern.compile("\\s*(.*?)\\s+(NEW|DELETED|MODIFIED)");

public static HashMap<String, Storage.Status> parseChanges(Iterable<String> lines) {
HashMap<String, Storage.Status> changes = new HashMap<String, Storage.Status>();
for (String line : lines) {
Expand Down

0 comments on commit a0c438d

Please sign in to comment.