Re: [PATCH] Add *.iml to .hgignore and .gitignore

2019-09-16 Thread JARvis PROgrammer
s already excluded and it contains the .iml and other workspace files > are created for the IntelliJ project, maybe your setup might be different? > > -Alan. > > > On 15/09/2019 21:22, JARvis PROgrammer wrote: > > This is a small patch to disable tracking of configuration files

[PATCH] Add *.iml to .hgignore and .gitignore

2019-09-15 Thread JARvis PROgrammer
This is a small patch to disable tracking of configuration files of Intellij-based IDEs (.iml) Diff: diff -r a6f653312b19 .gitignore --- a/.gitignoreSun Sep 15 08:41:48 2019 +0200 +++ b/.gitignoreSun Sep 15 21:11:13 2019 +0100 @@ -1,6 +1,7 @@ /build/ /dist/ /.idea/ +*.iml nbproj

Re: [PATCH] Allow LambdaMetaFactory generate direct field access instructions

2019-09-09 Thread JARvis PROgrammer
This may be considered related to https://bugs.openjdk.java.net/browse/JDK-8222744 according to which the creation of MethodHandles was allowed for fields. пн, 9 сент. 2019 г. в 22:36, JARvis PROgrammer : > Hi there, according to the latest sources of JDK, LambdaMetafactory is > unable to

[PATCH] Allow LambdaMetaFactory generate direct field access instructions

2019-09-09 Thread JARvis PROgrammer
Hi there, according to the latest sources of JDK, LambdaMetafactory is unable to create Lambdas for field-access instructions (getstatic, putstatic, getfield, setfield). While on Java 9+ this is not a serious issue (as we already have VarHandle API for this), this is nice for backporting to Java 8