You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/08/21 21:44:49 UTC

[GitHub] [netbeans] santiontanon opened a new issue, #4524: Profiler does not work on Apple Silicon

santiontanon opened a new issue, #4524:
URL: https://github.com/apache/netbeans/issues/4524

   ### Apache NetBeans version
   
   Apache NetBeans 14
   
   ### What happened
   
   Profiler cannot start on Apple Silicon. The first time it tries to start, it needs to run a calibration. For this, the console displays that Netbeans is running the following command:
   
   ```/Library/Java/JavaVirtualMachines/jdk-18.0.2.1.jdk/Contents/Home/bin/java -agentpath:/Applications/NetBeans/Apache NetBeans 14.app/Contents/Resources/NetBeans/netbeans/profiler/lib/deployed/jdk16/mac/libprofilerinterface.jnilib -Xbootclasspath/a:/Applications/NetBeans/Apache NetBeans 14.app/Contents/Resources/NetBeans/netbeans/profiler/lib/jfluid-server.jar:/Applications/NetBeans/Apache NetBeans 14.app/Contents/Resources/NetBeans/netbeans/profiler/lib/jfluid-server-15.jar org.netbeans.lib.profiler.server.ProfilerServer /Applications/NetBeans/Apache NetBeans 14.app/Contents/Resources/NetBeans/netbeans/profiler/lib/deployed/jdk16/mac 5141 10 ____Profiler+Calibration+Run____```
   
   And hungs there forever.
   
   Trying to run that command manually on the command line reveals that the command fails with the following error:
   
   ```Error occurred during initialization of VM
   Could not find agent library /Applications/NetBeans/Apache NetBeans 14.app/Contents/Resources/NetBeans/netbeans/profiler/lib/deployed/jdk16/mac/libprofilerinterface.jnilib in absolute path, with error: dlopen(/Applications/NetBeans/Apache NetBeans 14.app/Contents/Resources/NetBeans/netbeans/profiler/lib/deployed/jdk16/mac/libprofilerinterface.jnilib, 0x0001): tried: '/Applications/NetBeans/Apache NetBeans 14.app/Contents/Resources/NetBeans/netbeans/profiler/lib/deployed/jdk16/mac/libprofilerinterface.jnilib' (fat file, but missing compatible architecture (have 'unknown,i386,unknown,x86_64', need 'arm64e')), '/usr/lib/libprofilerinterface.jnilib' (no such file)```
   
   So, it seems that the "libprofilerinterface.jnilib" file is only provided for intel processors, but not for Arm, and hence it cannot be run on Apple Silicon. I wonder if there is any way to generate an Apple Silicon version of this file.
   
   ### How to reproduce
   
   Just try to profile any Java project, and this will occur.
   
   ### Did this work correctly in an earlier version?
   
   No / Don't know
   
   ### Operating System
   
   MacOS 12.2 Monterey on Apple Silicon
   
   ### JDK
   
   java 18.0.2.1 2022-08-18
   
   ### Apache NetBeans packaging
   
   Apache NetBeans provided installer
   
   ### Anything else
   
   This problem occurs every time.
   
   ### Are you willing to submit a pull request?
   
   Yes
   
   ### Code of Conduct
   
   Yes


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] gwegner commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "gwegner (via GitHub)" <gi...@apache.org>.
gwegner commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1740889642

   Thanks so much, @sroeper !
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: [I] Profiler does not work on Apple Silicon [netbeans]

Posted by "michaelajr (via GitHub)" <gi...@apache.org>.
michaelajr commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1826802230

   I just downloaded 20-rc3 (binary zip) and Terminal works on my M1. So hoping when the `pkg` installer is released with v20  it will be fixed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] sroeper commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "sroeper (via GitHub)" <gi...@apache.org>.
sroeper commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1734183792

   Ok, may be it's time to give something back. Fixing the profiler is pretty easy, but I have no clue how to make a push request.
   
   So here it comes:
   The profiler lib is build by a shell script: 
   netbeans/profiler/lib.profiler/native/scripts/buildnative-mac.sh
   
   This file seems to be a little bit too old. The author didn't know at that time how to build a universal library for arm64 and x86_64. The build produces a library with support for i386, ppc, ppc64 and x86_64. Because Apple drop the support for ppc and i386 we should not longer support them (no chance to update the code).
   
   As a result we can focus on building a library for x86_64 and arm64. This is what I have done. I tested the library with NB19 with success (even if I am not totally clear why there is a jdk16 dependency...).
   
   New build file is attached. If someone would be so kind to integrate that into the right repository it would be fixed for the next build. Even better would be of course if someone with more knowledge checks if the jdk15/jdk16 thing is still ok.
   
   Here is the build file:
   [buildnative-mac.sh.zip](https://github.com/apache/netbeans/files/12717969/buildnative-mac.sh.zip)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] sroeper commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "sroeper (via GitHub)" <gi...@apache.org>.
sroeper commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1734193803

   @neilcsmith-net That's all I can do, hopefully I am bit closer now to what you expect.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] gwegner commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "gwegner (via GitHub)" <gi...@apache.org>.
gwegner commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1509713218

   Same here. Any solutions yet?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: [I] Profiler does not work on Apple Silicon [netbeans]

Posted by "neilcsmith-net (via GitHub)" <gi...@apache.org>.
neilcsmith-net closed issue #4524: Profiler does not work on Apple Silicon
URL: https://github.com/apache/netbeans/issues/4524


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] santiontanon commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "santiontanon (via GitHub)" <gi...@apache.org>.
santiontanon commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1734544880

   Oh, thanks a lot sroeper! I might try to run your script as a work around, but it'd be awesome to have a version of this integrated into the next build :)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: [I] Profiler does not work on Apple Silicon [netbeans]

Posted by "jepsar (via GitHub)" <gi...@apache.org>.
jepsar commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1826798455

   > This is great - ty @sroeper - wondering if Terminal is having a similar issue. Can't seem to get to work on M1 but it works fine on Intel. Have you - or anyone else - seen the same?
   
   Yeah, terminal does not work for me as well. It used to work though.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] neilcsmith-net commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "neilcsmith-net (via GitHub)" <gi...@apache.org>.
neilcsmith-net commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1734172783

   @sroeper the zip is platform independent, but not code signed!  That is why you see that issue unless you bypass quarantine protections.
   
   It's not about developers using NetBeans on M1/M2 architecture, but developers _contributing_ to NetBeans who do.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: [I] Profiler does not work on Apple Silicon [netbeans]

Posted by "jepsar (via GitHub)" <gi...@apache.org>.
jepsar commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1855602511

   Terminal is working again for me as well in 20.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] jepsar commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "jepsar (via GitHub)" <gi...@apache.org>.
jepsar commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1503334386

   Same for me on NB17: (fat file, but missing compatible architecture (have 'unknown,i386,unknown,x86_64', need 'arm64'))


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] twolf2919 commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "twolf2919 (via GitHub)" <gi...@apache.org>.
twolf2919 commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1442296210

   I can confirm getting the same results with Netbeans 16 on JDK 17.05 on an Apple Silicon Mac.  The same identical project with same JDK and same version of Netbeans works on an x86-based Mac.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] neilcsmith-net commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "neilcsmith-net (via GitHub)" <gi...@apache.org>.
neilcsmith-net commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1733836103

   @sroeper the universal macOS installer for NB19 should have addressed the libjnidispatch issue. If you're still seeing that, please open another issue.
   
   Unfortunately, the profiler issue isn't fixed yet. It's a shame that M1/M2 is still not fully supported yet - not enough developers using that architecture I guess.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] neilcsmith-net closed issue #4524: Profiler does not work on Apple Silicon

Posted by "neilcsmith-net (via GitHub)" <gi...@apache.org>.
neilcsmith-net closed issue #4524: Profiler does not work on Apple Silicon
URL: https://github.com/apache/netbeans/issues/4524


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] gwegner commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "gwegner (via GitHub)" <gi...@apache.org>.
gwegner commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1679198522

   The first report was over one year ago. Is there any solution in the mean time?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: [I] Profiler does not work on Apple Silicon [netbeans]

Posted by "neilcsmith-net (via GitHub)" <gi...@apache.org>.
neilcsmith-net commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1763039735

   Should be fixed in NB20.  A release candidate should be available next week.  Please help testing that.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] sroeper commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "sroeper (via GitHub)" <gi...@apache.org>.
sroeper commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1733817825

   Can confirm the behaviour under NB-18. For NB-19 there is no installer for M1/M2 procesor and the general installer complains at startup with „libjnidispatch-nb.jnilib“ can not be opened, because Apple could not search inside for malformed code.
   
   So another feature which renders useless in Netbeans, it's a pity.
   
   After all this years it looks like I have to search for a new IDE.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] sroeper commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "sroeper (via GitHub)" <gi...@apache.org>.
sroeper commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1735575522

   I tried my very best to make a pull request from the change, see https://github.com/apache/netbeans/pull/6494


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] sroeper commented on issue #4524: Profiler does not work on Apple Silicon

Posted by "sroeper (via GitHub)" <gi...@apache.org>.
sroeper commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1733907553

   @neilcsmith-net Thank you for the hint, I didn't realised that the Apache-NetBeans-19.pkg is the installer for Mac. I used the Binary (Plattform Independent) netbeans-19-bin.zip, which seems not so platform independent :-)
   
   And yes, I can confirm that the issue with libjnidispatch-nb.jnilib is not present with the installer package, and the issue with the profiler is still not fixed in NB19.
   
   You might be right that not enough developers are using Netbeans on the M1/M2 architecture. I am the last one I know but the architecture itself is used by more than 80% of the developers I work with (and all use Intelij).
   So I think the Netbeans IDE is not very attractive to these developers. Even if they would try Netbeans they would be disappointed and go for an alternative. So we can assume that there wouldn't be an higher count of developers who use Netbeans on Apple Silicon in the future which in turn will lead to even worse support for the platform.
   
   Never the less I had a lot of lucky years  with Netbeans, so a big thank you to all contributors!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: [I] Profiler does not work on Apple Silicon [netbeans]

Posted by "michaelajr (via GitHub)" <gi...@apache.org>.
michaelajr commented on issue #4524:
URL: https://github.com/apache/netbeans/issues/4524#issuecomment-1826770674

   This is great - ty @sroeper - wondering if Terminal is having a similar issue. Can't seem to get to work on M1 but it works fine on Intel. Have you - or anyone else - seen the same?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists