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 175913 - Prints double
Summary: Prints double
Status: RESOLVED DUPLICATE of bug 167279
Alias: None
Product: platform
Classification: Unclassified
Component: Output Window (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: t_h
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-11-02 10:43 UTC by toille
Modified: 2009-11-11 05:49 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 toille 2009-11-02 10:43:24 UTC
When using System.out.print and the string contains a colon (:) the string is printed twice. However it doesnt if
println is used instead.
Problem occurs in 6.7.1 but doesnt in 6.1.
Comment 1 Petr Dvorak 2009-11-11 05:41:31 UTC
I am not able to reproduce the problem with NB 6.8 Beta using following code:

public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        System.out.print("Hello:123");
        System.out.print("Bye:321");
    }

}

Closing as WORKSFORME
Comment 2 t_h 2009-11-11 05:49:48 UTC

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