git://git.nikiroo.be
/
fanfix-swing.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd459b4
)
fix example
author
Kevin Lamonte
<kevin.lamonte@gmail.com>
Sat, 9 Mar 2019 15:24:15 +0000
(09:24 -0600)
committer
Kevin Lamonte
<kevin.lamonte@gmail.com>
Sat, 9 Mar 2019 15:24:15 +0000
(09:24 -0600)
src/jexer/package-info.java
patch
|
blob
|
blame
|
history
diff --git
a/src/jexer/package-info.java
b/src/jexer/package-info.java
index f2769a0facf8392f13bf5e5f12ca26f934ffd49e..300f9731a26ea9728ac27e4ef91e82f0ecbc2f34 100644
(file)
--- a/
src/jexer/package-info.java
+++ b/
src/jexer/package-info.java
@@
-43,8
+43,8
@@
*
* public class MyApplication extends TApplication {
*
- * public MyApplication() {
- * super();
+ * public MyApplication()
throws Exception
{
+ * super(
BackendType.XTERM
);
*
* // Create standard menus for Tool, File, and Window.
* addToolMenu();
@@
-52,7
+52,7
@@
* addWindowMenu();
* }
*
- * public static void main(String [] args) {
+ * public static void main(String [] args)
throws Exception
{
* MyApplication app = new MyApplication();
* app.run();
* }