Skip to content
Snippets Groups Projects
Commit 3d578f5b authored by Georg Seibt's avatar Georg Seibt :nerd:
Browse files

Do not store the summary of a commit as its message.

parent 82999edf
No related branches found
No related tags found
No related merge requests found
......@@ -482,7 +482,7 @@ public class Repository {
commitFile = dir.toPath().resolve(Paths.get(lineScanner.nextLine().trim())).toFile();
break;
case SUMMARY:
commit.setMessage(lineScanner.nextLine().trim()); // TODO this is NOT the message, it is the summary (first line of the message)
// Skip the summary of the commit as it is just the first line of its message (for which there is a getter).
break;
case BOUNDARY:
// We do not store the information that this commit was the boundary of the 'git blame' call.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment