Bug 504447 - Make overzealous \.class$ pattern in .hgignore more precise. r=dbaron sr=jst
--- a/.hgignore
+++ b/.hgignore
@@ -1,16 +1,15 @@
# .hgignore - List of filenames hg should ignore
# Filenames that should be ignored wherever they appear
~$
\.pyc$
(^|/)TAGS$
(^|/)\.DS_Store$
-\.class$
# User files that may appear at the root
^\.mozconfig
^mozconfig
^configure$
^config\.cache$
^config\.log$
^ID$
@@ -23,8 +22,11 @@
# Build directories for js shell
_DBG\.OBJ/
_OPT\.OBJ/
# SpiderMonkey configury
^js/src/configure$
^js/src/autom4te.cache$
+
+# Java HTML5 parser classes
+^parser/html/java/.*\.class$