This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 176148 - error at the IDE's output window with the string " : :"
Summary: error at the IDE's output window with the string " : :"
Status: RESOLVED DUPLICATE of bug 167279
Alias: None
Product: platform
Classification: Unclassified
Component: Output Window (show other bugs)
Version: 6.x
Hardware: All All
: P4 normal (vote)
Assignee: t_h
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-11-08 23:51 UTC by udv
Modified: 2009-11-09 04:06 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description udv 2009-11-08 23:51:22 UTC
public class Main(){
     public static void main(String[] args){
          System.out.print(" : :");
          System.out.print("a");
          System.out.print("b");
     }
}

Result looks strange at the NetBeans IDE's output window:
" : :ab : :ab
"		// that is not misprint - it's a new line

Changing print(" : :") to print(" : : :") results with " : : :ab : : :ab
"
that means result is duplicated somewhere

Something is happening when a string contains newline - result is correct.
My suggestion - string " : :" (hex value '20-3A-20-3A') means something specific or there are problems in the output buffer formatting or positioning.

Best Regards, udv.
Comment 1 t_h 2009-11-09 04:06:45 UTC

*** This bug has been marked as a duplicate of bug 167279 ***