Open Kshitiz-Sharma opened 6 years ago
I have a rare requirement to obtain the captures in strict order. This can be easily accomplished by replacing:
capture = new HashMap<>();
With
capture = new LinkedHashMap<>();
in Match.java
Match.java
Kindly consider including this in the next release.
can you submit a PR with a test?
I'll see if I can get around to it this weekend.
Great! tag me in the PR and I'll test and review.
I have a rare requirement to obtain the captures in strict order. This can be easily accomplished by replacing:
With
in
Match.java
Kindly consider including this in the next release.