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/05/29 07:39:53 UTC

[GitHub] [netbeans] lbruun commented on issue #4017: ASCII/UNICODE BUG K=75

lbruun commented on issue #4017:
URL: https://github.com/apache/netbeans/issues/4017#issuecomment-1140395751

   Using Windows 11, NB 13 and JDK 11,  I can only reproduce on a Maven-based project, **not** on a Ant-based one.
   My full and complete application is this:
   ```java
   public class MyMain {
      public static void main(String[] args) {
           System.out.println("Start");
           System.out.println("75 " + (char) 75);  // Swallowed with NB-->Maven execution
           System.out.println("End");
       }
   }
   ```
   However, when executing the `mvn` command line which NB constructs _outside_ of the IDE in the `cmd.exe`, then I do indeed get the line printed correctly. Baffled. Regardless I'm thinking it may have to do with Maven ANSI coloring, Maven's use of [jansi](https://github.com/fusesource/jansi) and how all that plays with NetBeans ?


-- 
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