April Rivera hace 6 años
padre
commit
9bb39948a9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/main/java/io/zipcoder/ItemParser.java

+ 1
- 1
src/main/java/io/zipcoder/ItemParser.java Ver fichero

@@ -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;