1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-26 20:54:22 +01:00

Removed leftover stub for testing NotificationPopup dialog

This commit is contained in:
Cristian Maglie 2016-02-01 10:18:41 +01:00
parent 8e4ce4cfd1
commit b02ce54387

View File

@ -29,6 +29,8 @@
package cc.arduino.view;
import static processing.app.Theme.scale;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Frame;
@ -45,14 +47,12 @@ import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.WindowConstants;
import javax.swing.border.LineBorder;
import javax.swing.event.HyperlinkListener;
import processing.app.Theme;
import static processing.app.Theme.scale;
public class NotificationPopup extends JDialog {
@ -133,18 +133,4 @@ public class NotificationPopup extends JDialog {
public void close() {
dispatchEvent(new WindowEvent(this, WindowEvent.WINDOW_CLOSING));
}
public static void main(String args[]) {
NotificationPopup dialog = new NotificationPopup(new JFrame(),
System.out::println,
"<a href='arduinoide://boardsmanager'>test</a> test test test test test test test test\n"
+ " test test test test test test test test test test test");
dialog.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
}