aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2015-09-25 17:48:02 -0400
committerGerrit Code Review @ Eclipse.org <gerrit@eclipse.org>2015-09-25 17:48:04 -0400
commit6715c36100d097d39e303fe2fbc4c62412c46a4a (patch)
tree3ee002161b450ada85e123fe01662617c84f7f77 /org.eclipse.jgit/src/org/eclipse
parent97ef1fe89369422ca430b47e0b53277b94bfbc29 (diff)
parenta28ba3f2c7e0fa96f778c62813734807c99c61c3 (diff)
downloadjgit-6715c36100d097d39e303fe2fbc4c62412c46a4a.tar.gz
jgit-6715c36100d097d39e303fe2fbc4c62412c46a4a.zip
Merge "Show submodule difference as a hunk"
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java33
1 files changed, 14 insertions, 19 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java b/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java
index bcc30c35b4..15abcda561 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java
@@ -665,16 +665,10 @@ public class DiffFormatter implements AutoCloseable {
format(res.header, res.a, res.b);
}
- private static void writeGitLinkDiffText(OutputStream o, DiffEntry ent)
- throws IOException {
- if (ent.getOldMode() == GITLINK) {
- o.write(encodeASCII("-Subproject commit " + ent.getOldId().name() //$NON-NLS-1$
- + "\n")); //$NON-NLS-1$
- }
- if (ent.getNewMode() == GITLINK) {
- o.write(encodeASCII("+Subproject commit " + ent.getNewId().name() //$NON-NLS-1$
- + "\n")); //$NON-NLS-1$
- }
+ private static byte[] writeGitLinkText(AbbreviatedObjectId id)
+ throws IOException {
+ return encodeASCII("Subproject commit " + id.name() //$NON-NLS-1$
+ + "\n");
}
private String format(AbbreviatedObjectId id) {
@@ -938,13 +932,7 @@ public class DiffFormatter implements AutoCloseable {
formatHeader(buf, ent);
- if (ent.getOldMode() == GITLINK || ent.getNewMode() == GITLINK) {
- formatOldNewPaths(buf, ent);
- writeGitLinkDiffText(buf, ent);
- editList = new EditList();
- type = PatchType.UNIFIED;
-
- } else if (ent.getOldId() == null || ent.getNewId() == null) {
+ if (ent.getOldId() == null || ent.getNewId() == null) {
// Content not changed (e.g. only mode, pure rename)
editList = new EditList();
type = PatchType.UNIFIED;
@@ -952,8 +940,15 @@ public class DiffFormatter implements AutoCloseable {
} else {
assertHaveRepository();
- byte[] aRaw = open(OLD, ent);
- byte[] bRaw = open(NEW, ent);
+ byte[] aRaw, bRaw;
+
+ if (ent.getOldMode() == GITLINK || ent.getNewMode() == GITLINK) {
+ aRaw = writeGitLinkText(ent.getOldId());
+ bRaw = writeGitLinkText(ent.getNewId());
+ } else {
+ aRaw = open(OLD, ent);
+ bRaw = open(NEW, ent);
+ }
if (aRaw == BINARY || bRaw == BINARY //
|| RawText.isBinary(aRaw) || RawText.isBinary(bRaw)) {