RFR: 8284720: IntelliJ: JIRA integration
Andrey Turbanov
aturbanov at openjdk.java.net
Wed Apr 13 08:39:17 UTC 2022
On Tue, 12 Apr 2022 04:44:15 GMT, Daniel Jeliński <djelinski at openjdk.org> wrote:
> This patch adds clickable link to commit messages in IntelliJ's git log. Example result:
> 
BTW, `\d` in regexps is a bit slower than `[0-9]`. It's because `[0-9]` matches only ASCII digits, while `\d` additional matches by extended unicode digits.
-------------
PR: https://git.openjdk.java.net/jdk/pull/8193
More information about the build-dev
mailing list