Issue 439: be more lax and don't look for END

git-svn-id: https://zxing.googlecode.com/svn/trunk@1416 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2010-06-08 05:20:00 +00:00
parent 7cceeec2f8
commit 51970aa020

View file

@ -38,10 +38,6 @@ final class VEventResultParser extends ResultParser {
if (vEventStart < 0) {
return null;
}
int vEventEnd = rawText.indexOf("END:VEVENT");
if (vEventEnd < 0) {
return null;
}
String summary = VCardResultParser.matchSingleVCardPrefixedField("SUMMARY", rawText, true);
String start = VCardResultParser.matchSingleVCardPrefixedField("DTSTART", rawText, true);