Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. @Override
  2. public void process(SCMRepository repo, Commit commit, PersistenceMechanism writer) {
  3.  
  4. for(Modification m : commit.getModifications()) {
  5. writer.write(
  6. commit.getHash(),
  7. m.getFileName(),
  8. m.getType()
  9. );
  10.  
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement