diff src/org/tmatesoft/hg/internal/PathGlobMatcher.java @ 418:528b6780a8bd

A bit of FIXME cleanup (mostly degraded to TODO post 1.0), comments and javadoc
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 22 Mar 2012 21:02:20 +0100
parents 981f9f50bb6c
children
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/internal/PathGlobMatcher.java	Thu Mar 22 20:14:06 2012 +0100
+++ b/src/org/tmatesoft/hg/internal/PathGlobMatcher.java	Thu Mar 22 21:02:20 2012 +0100
@@ -52,7 +52,7 @@
 	// HgIgnore.glob2regex is similar, but IsIgnore solves slightly different task 
 	// (need to match partial paths, e.g. for glob 'bin' shall match not only 'bin' folder, but also any path below it,
 	// which is not generally the case
-	private static String glob2regexp(String glob) { // FIXME TESTS NEEDED!!!
+	private static String glob2regexp(String glob) { // TODO TESTS NEEDED!!!
 		int end = glob.length() - 1;
 		if (glob.length() > 2 && glob.charAt(end) == '*' && glob.charAt(end - 1) == '.') {
 			end-=2;