File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/history Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public void processStream(InputStream input) throws IOException {
82
82
s = in .readLine ();
83
83
}
84
84
}
85
- if (state == ParseState .REVISION && s .startsWith ("revision" )) {
85
+ if (state == ParseState .REVISION && s .startsWith ("revision " )) {
86
86
if (entry != null ) {
87
87
entries .add (entry );
88
88
}
@@ -96,7 +96,7 @@ public void processStream(InputStream input) throws IOException {
96
96
state = ParseState .METADATA ;
97
97
s = in .readLine ();
98
98
}
99
- if (state == ParseState .METADATA && s .startsWith ("date:" )) {
99
+ if (state == ParseState .METADATA && s .startsWith ("date: " )) {
100
100
parseDateAuthor (entry , s );
101
101
102
102
state = ParseState .COMMENT ;
You can’t perform that action at this time.
0 commit comments