|
@@ -28,7 +28,7 @@ public class ItemParser {
|
28
|
28
|
String expiration;
|
29
|
29
|
Item item = null;
|
30
|
30
|
|
31
|
|
- Matcher m = Pattern.compile(":([^,].*?)(,|##|\\^|!|%|\\*|@)").matcher(rawItem);
|
|
31
|
+ Matcher m = Pattern.compile(":([^,].*?)(;|##|\\^|!|%|\\*|@)").matcher(rawItem);
|
32
|
32
|
|
33
|
33
|
int numberOfMatches = countMatches(m);
|
34
|
34
|
final int REQUIRED_NUMBER_OF_FIELDS_FOR_ITEM = 4;
|