diff src/org/tmatesoft/hg/repo/HgIgnore.java @ 271:c8baeb813d74

Include tests for hgignore into the suite
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 24 Aug 2011 04:17:55 +0200
parents 7af843ecc378
children 086a326f181f
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgIgnore.java	Wed Aug 24 04:10:17 2011 +0200
+++ b/src/org/tmatesoft/hg/repo/HgIgnore.java	Wed Aug 24 04:17:55 2011 +0200
@@ -116,9 +116,6 @@
 		while (start <= end && line.charAt(start) == '*') start++;
 		while (end > start && line.charAt(end) == '*') end--;
 
-		if (line.endsWith(".so")) {
-			System.out.println();
-		}
 		int inCurly = 0;
 		for (int i = start; i <= end; i++) {
 			char ch = line.charAt(i);