stumpwm-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [STUMP] lots of backtraces (mainly java)


From: joh
Subject: Re: [STUMP] lots of backtraces (mainly java)
Date: Wed, 18 Jun 2008 23:23:08 -0400

I have run into similar issues with several Java programs. I am using
jdk 1.5.0_14-b03 on Debian. The bug seems to affect any app using the
Swing UI. Even this simple program is enough:

import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class Swing extends JFrame {

    public static void main(String[] args) {
        new Swing().init();
    }

    public void init() {
        JOptionPane.showConfirmDialog(this, "Hello world?");
        System.exit(0);
    }


}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]