From: James Moger Date: Thu, 22 Mar 2012 11:49:30 +0000 (-0400) Subject: Ensure that the line counts start at 1 X-Git-Tag: v0.9.0~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c2833a3fd84e8a7f1361cb3c5c03652dead5b337;p=gitblit.git Ensure that the line counts start at 1 --- diff --git a/src/com/gitblit/LuceneExecutor.java b/src/com/gitblit/LuceneExecutor.java index b6df254a..7b6a879f 100644 --- a/src/com/gitblit/LuceneExecutor.java +++ b/src/com/gitblit/LuceneExecutor.java @@ -1172,7 +1172,7 @@ public class LuceneExecutor implements Runnable { if (SearchObjectType.blob == result.type) { // count lines as offset into the content for this fragment - int line = StringUtils.countLines(content.substring(0, pos)); + int line = Math.max(1, StringUtils.countLines(content.substring(0, pos))); // create fragment tag with line number and language String lang = "";