Is Bug Database Running Correctly?

Jeff Dinkins jeff.dinkins at oracle.com
Tue Feb 4 04:49:20 UTC 2014



Hi - take a look at https://bugs.openjdk.java.net/browse/JDK-8030816 ― is that the one?

-jeff

On Feb 3, 2014, at 9:40 PM, nakamura at hkg.ac.jp wrote:
> 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