260261262263264265266267268269270
// so we use the updated list that contains only the updated files list ChangeSet changeSet = convertScmFileSetToChangeSet( scmResult.getUpdatedFiles() ); if ( changeSet != null ) { result.addChange( changeSet ); } } return result;
208209210211212213214215216217218
change.addFile( file ); } } result.addChange( change ); } } else { // We don't have a changes information probably because provider doesn't have a changelog command
219220221222223224225226227228229
378379380381382383384385386387388
// TODO: is this valid? Does it ever return a changeset itself? ChangeSet changeSet = convertScmFileSetToChangeSet( scmResult.getCheckedOutFiles() ); if ( changeSet != null ) { result.addChange( changeSet ); } return result; }
456457458459460461462463464465466
change.addFile( file ); } } result.addChange( change ); } } else { //We don't have a changes information probably because provider doesn't have a changelog command
467468469470471472473474475476477
//so we use the updated list that contains only the updated files list ChangeSet changeSet = convertScmFileSetToChangeSet( scmResult.getUpdatedFiles() ); if ( changeSet != null ) { result.addChange( changeSet ); } } return result;