Bug: 345899
Change-Id: I133b9dd3e9a9c3c749547a884df3ce371929f38e
Signed-off-by: Piotr Janik <janikpiotrek@gmail.com>
Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
public Set<String> getUntracked() {
return Collections.unmodifiableSet(diff.getUntracked());
}
+
+ /**
+ * @return list of files that are in conflict. (e.g what you get if you
+ * modify file that was modified by someone else in the meantime)
+ */
+ public Set<String> getConflicting() {
+ return Collections.unmodifiableSet(diff.getConflicting());
+ }
}