Changeset 8cc03c2
- Timestamp:
- Aug 19, 2016 4:06:04 PM (5 years ago)
- Branches:
- master
- Children:
- 268953e1
- Parents:
- 47a0df76
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/jetty/java/src/net/i2p/jetty/JettyStart.java
r47a0df76 r8cc03c2 39 39 * Start Jetty where the args are one or more XML files. 40 40 * Save a reference to the Server so it can be cleanly stopped later. 41 * Caller must call startup() 41 42 * 42 43 * This is like XmlConfiguration.main(), which is essentially what … … 216 217 public static void main(String[] args) { 217 218 try { 218 new JettyStart(null, null, args); 219 JettyStart js = new JettyStart(null, null, args); 220 js.startup(); 219 221 } catch (RuntimeException e) { 220 222 throw e;
Note: See TracChangeset
for help on using the changeset viewer.