Last change
on this file since 8c10ec9 was
8c10ec9,
checked in by meeh <meeh@…>, 3 years ago
|
Realised a better way to handle the build process of both the
Browser Bundle i2p launcher, as well as the upcoming Mac OS X
i2p launcher. They share some few properties and how code has
to be managed for both system's update managers and so on.
More details will be documentated in README.md files as well as
in those commit messages I now write 
|
-
Property mode set to
100644
|
File size:
507 bytes
|
Line | |
---|
1 | package net.i2p |
---|
2 | |
---|
3 | import net.i2p.router.Router |
---|
4 | |
---|
5 | /** |
---|
6 | * |
---|
7 | * For java developers: |
---|
8 | * A scala object is like an instance of a class. |
---|
9 | * If you define a method inside an object, it's equals to |
---|
10 | * java's static methods. |
---|
11 | * |
---|
12 | * Also, in scala, the body of a class/object is executed as it's |
---|
13 | * constructor. |
---|
14 | * |
---|
15 | * Also noteworthy; |
---|
16 | * val is immutable |
---|
17 | * var is mutable |
---|
18 | * |
---|
19 | * |
---|
20 | * @author Meeh |
---|
21 | * @version 0.0.1 |
---|
22 | * @since 0.9.35 |
---|
23 | */ |
---|
24 | object MacOSXRouterLauncherApp extends App { |
---|
25 | |
---|
26 | |
---|
27 | Router.main(args) |
---|
28 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.