Is Bug Database Running Correctly?

nakamura at hkg.ac.jp nakamura at hkg.ac.jp
Tue Feb 4 03:40:47 UTC 2014


Hi,

I can't view the bug which was submitted via http://bugs.sun.com/ on
2013-12-18.
https://bugs.openjdk.java.net/browse/JDK-9009012
http://bugs.java.com/bugdatabase/view_bug.do?bug_id=9009012

I can't send an email to jbs_jpginfra_support_ww_grp at oracle.com and a
message via
https://bugs.openjdk.java.net/secure/ContactAdministrators!default.jspa.



javac (8-fcs-b128) throws an exception when it compiles the following
program:
-----
//import java.awt.event.*;
import javax.swing.*;

public class Test1 {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> {
            JFrame frame = new JFrame("Test1");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JButton button = new JButton("Test1");
            button.addActionListener(new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                }
            });
            frame.add(button);
            frame.setSize(160, 160);
            frame.setVisible(true);
        });
    }
}
-----

Yours sincerely,
Manabu Nakamura



More information about the discuss mailing list