@SuppressWarnings("rawtypes")
private static void loadChangesetForProject(final String projectPath,
final List<String> changedFiles) throws IOException, DocumentException, ApplicationException {
Document projectChangeset = SvnUtils.getChangeset(projectPath);
List changedFilesNodes = projectChangeset.selectNodes("/status/target/entry/@path");
if (null != changedFilesNodes) {
for (int i = 0; i < changedFilesNodes.size(); i++) {
Node changedFilesNode = (Node)changedFilesNodes.get(i);
final String changedFileName = FilenameUtils.concat(projectPath, changedFilesNode.getText());
final File changedFile = new File(changedFileName);