Re: [Imaging]: Integrating JIRA issues with GitHub issues

2020-08-17 Thread Eric Peters
TLDR; It looks like https://exalate.com/integrations/ has some more advanced tools/services for managing this (disclaimer: I have not used their services, this is only from some quick googling) Via: https://community.atlassian.com/t5/Jira-questions/Is-there-a-plugin-to-keep-Jira-Github-issues-in-

Re: Question about "StringUtils.indexOfAny" functionality/test

2020-08-17 Thread Eric Peters
you'd used the traditional *indexOf *method. > b. Assuming that the second character of the string is index 2. Java > indexes at 0, so this would be returned as 1. > > Looking at the code has me wondering whether adding the search chars to a > Set and then testing each one is

Question about "StringUtils.indexOfAny" functionality/test

2020-08-16 Thread Eric Peters
Hi ~ I'm in the process of porting apache commons lang to scala, so it can transpile to javascript/scala native. ( https://github.com/er1c/scala-apache-commons-lang3 FWIW) One test I'm currently investigating is this line: https://github.com/apache/commons-lang/blob/master/src/test/java/org/apac