Skip to content

Commit

Permalink
fixed the regular expression of EpcPureIdentityURI and EpcTagURI
Browse files Browse the repository at this point in the history
  • Loading branch information
jlcout committed Dec 28, 2020
1 parent 413d725 commit 15e4d72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private void parse() {
tableItem = ssccPartitionTableList.getPartitionByL( prefixLength.getValue() );
validateExtensionDigitAndSerial();
} else {
if ( optionalEpcTagURI.isPresent() ) {
if ( optionalEpcTagURI.isPresent() ) {
Pattern pattern = Pattern.compile("(urn:epc:tag:sscc-)(96)\\:([0-7])\\.(\\d+)\\.([0-9])(\\d+)");
Matcher matcher = pattern.matcher(epcTagURI);

Expand Down

0 comments on commit 15e4d72

Please sign in to comment.