Skip to content

Commit

Permalink
Ignore conflict markers in ScriptExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Oct 24, 2023
1 parent 6280089 commit 39fd292
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions unicodetools/src/main/java/org/unicode/jsp/FileUtilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ public SemiFileReader process(BufferedReader in, String fileName) {
if (line == null) {
break;
}
if (line.startsWith("<<<<<<<")
|| line.startsWith("=======")
|| line.startsWith(">>>>>>>")) {
continue;
}
final int comment = line.indexOf("#");
if (comment >= 0) {
processComment(line, comment);
Expand Down

0 comments on commit 39fd292

Please sign in to comment.