Remove comment

This commit is contained in:
misaochan 2016-10-27 16:06:53 +13:00
parent a058adcc42
commit aaf91ac264

View file

@ -226,7 +226,6 @@ public class CategorizationFragment extends Fragment {
for(Iterator<String> item = mergedItemsList.iterator(); item.hasNext();) { for(Iterator<String> item = mergedItemsList.iterator(); item.hasNext();) {
String s = item.next(); String s = item.next();
//\b(19|20)\d{2}\b
//Check if s contains a 4-digit word anywhere within the string (.* is wildcard) //Check if s contains a 4-digit word anywhere within the string (.* is wildcard)
if(s.matches(".*(19|20)\\d{2}.*")) { if(s.matches(".*(19|20)\\d{2}.*")) {
Log.d(TAG, "Filtering out year " + s); Log.d(TAG, "Filtering out year " + s);