From: Gurdeep D. <gs...@ny...> - 2008-08-03 16:47:24
|
Ref: Bug [ 2036823 ] Change *Iterator to *Iterable methods in GitStatusResponse Hi I have renamed the methods in GitStatusResponse and removed the word iterator completely from method names. You will need to make changes to your gitclipse code accordingly. e.g. the method that was earlier getNewFilesToCommitIteator() is now just getFilesToCommit() thanks Gurdeep New method signatures -------------------------------- public Iterable<File> getNewFilesToCommit() public Iterable<File> getDeletedFilesToCommit() public Iterable<File> getModifiedFilesToCommit() public Iterable<File> getDeletedFilesNotUpdated() public Iterable<File> getModifiedFilesNotUpdated() public Iterable<File> getRenamedFilesToCommit() public Iterable<File> getUntrackedFiles() |