Skip to content

Commit

Permalink
Issue 439: be more lax and don't look for END
Browse files Browse the repository at this point in the history
  • Loading branch information
srowen committed Jun 8, 2010
1 parent 9a2dd6b commit 418ad68
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -38,10 +38,6 @@ public static CalendarParsedResult parse(Result result) {
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);
Expand Down

0 comments on commit 418ad68

Please sign in to comment.