3
So guys, I need to subscribe to all the methods that were changed in a commit, whether updated, removed or added.
Example: In this commit
The changed methods were:
- br.ufrn.ase.Classe1.metodoB(int b)U
- br.ufrn.ase.Classe1.getV()D
- br.ufrn.ase.Classe1.metodoadicionado()A
- br.ufrn.ase.Classe2.metodoQualquer(int i)A
- br.ufrn.ase.Classe2.outro(int j)A
Does anyone have any idea how to do this or know of any lib they already do? The code access the commits and get the blob I already have. I am developing in Java, but lib can be in any language.
Thanks in advance.