Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
Make HEX_STRING_PATTERN more relaxed to fit to reality
Browse files Browse the repository at this point in the history
  • Loading branch information
sfuhrm committed Jan 8, 2024
1 parent dfa6402 commit 0306676
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class Walks {
/**
* The pattern of a Hex-STRING continuation line in a walk file.
*/
private static final Pattern HEX_STRING_PATTERN = Pattern.compile("([0-9a-fA-F]{2})( [0-9a-fA-F]{2})+");
private static final Pattern HEX_STRING_PATTERN = Pattern.compile("([0-9a-fA-F]{2})( [0-9a-fA-F]{2})* *");

private Walks() {

Expand Down

0 comments on commit 0306676

Please sign in to comment.