-
Notifications
You must be signed in to change notification settings - Fork 92
[#36] allow changing almost everything in Config using System Properties #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
ba09a83
eede23d
3603d69
dd5b7ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -421,10 +421,10 @@ final int search(Matcher matcher, byte[]text, int textP, int textEnd, int textRa | |
| int targetP = regex.exactP; | ||
| int targetEnd = regex.exactEnd; | ||
|
|
||
| int end, s, tlen1; | ||
| int end, s; | ||
| int tail = targetEnd - 1; | ||
| int tlen1 = tail - targetP; | ||
| if (USE_SUNDAY_QUICK_SEARCH) { | ||
| tlen1 = tail - targetP; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this fixing a separate bug? If so we should move it to another PR because it's not config-related.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. when I changed so I tried to fix.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I pinged @enebo to look at this too.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, it was constant propagated since those interface fields are essentially static finals |
||
| end = textRange + tlen1; | ||
| s = textP + tlen1; | ||
| } else { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.