DirCacheCheckout: fix getToBeDeleted()

This wrongly returns the same as getConflicts()
Signed-off-by: Mathias Kinzler <mathias.kinzler@sap.com>

Change-Id: Id37c625458fc5a9b3987f05b684620e24fdfe852
This commit is contained in:
Mathias Kinzler 2010-12-16 08:41:36 +01:00
parent c19093bbad
commit 73f36aa8f7
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public List<String> getConflicts() {
* {@link DirCacheCheckout}.
*/
public List<String> getToBeDeleted() {
return conflicts;
return toBeDeleted;
}
/**