From 103e349f8ecbf3bd9fe42861dbddcc43cd33cc55 Mon Sep 17 00:00:00 2001
From: Stuffed <stuffedgame@gmail.com>
Date: Thu, 26 Oct 2017 00:31:59 +0900
Subject: [PATCH] Remove MissingClosingAngleBrackets - too many false negatives
 for it

---
 sanityCheck | 2 --
 1 file changed, 2 deletions(-)

diff --git a/sanityCheck b/sanityCheck
index 73dcc36c880..3977b083135 100755
--- a/sanityCheck
+++ b/sanityCheck
@@ -43,8 +43,6 @@ $GREP -e "<<[ a-zA-Z]\+[^()<>]*([^()]*)[^()]*)[^()<>]*>>"  -- "src/*" | myprint
 # Check for one closing bracket but two opening brackets.  e.g.:  <<if ((foo)>>
 $GREP -e "<<[ a-zA-Z]\+[^()<>]*([^()]*([^()]*)[^()<>]*>>"  -- "src/*" | myprint "MissingClosingBracket2"
 $GREP -e "<<.*[(][^<>)]*[(][^<>)]*)\?[^<>)]*>>" -- "src/*" | myprint "MissingClosingBracket3"
-# Check for missing >>.  e.g.:   <<if $foo
-$GREP "<<[^<>]*[^,\"\[{"$'\r]\r'"\?$" -- 'src/*' | myprint "MissingClosingAngleBrackets"
 # Check for too many >>>.  e.g.: <</if>>> 
 $GREP "<<[^<>]*[<>]\?[^<>]*>>>" -- "src/*.tw" | myprint "TooManyAngleBrackets"
 # Check for too many <<<.  e.g.: <<</if>> 
-- 
GitLab