Changeset 93c6df7
- Timestamp:
- Jun 21, 2018 6:41:21 PM (3 years ago)
- Branches:
- master
- Children:
- 1e24523
- Parents:
- e33bb2a
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/susimail/src/src/i2p/susi/webmail/pop3/POP3MailBox.java
re33bb2a r93c6df7 1317 1317 try { 1318 1318 deletePending(!shouldWait); 1319 if (shouldWait) { 1320 sendCmd1a("QUIT"); 1321 if (_log.shouldDebug()) _log.debug("close() with wait complete"); 1322 } else { 1323 sendCmd1aNoWait("QUIT"); 1319 if (socket != null && socket.isConnected()) { 1320 if (shouldWait) { 1321 sendCmd1a("QUIT"); 1322 if (_log.shouldDebug()) _log.debug("close() with wait complete"); 1323 } else { 1324 sendCmd1aNoWait("QUIT"); 1325 } 1324 1326 } 1325 1327 } catch (IOException e) { -
history.txt
re33bb2a r93c6df7 1 2018-06-21 zzz 2 * Console: Add Azerbaijani 3 * SusiMail: Fix NPE on logout (ticket #2266) 4 1 5 2018-06-19 zzz 6 * Console: 7 - Restore line breaks in copy/pasted logs (ticket #2078) 8 - Don't show individual tx/rx graphs if showing combined graph (ticket #2106) 2 9 * SSU: Set volatile on field (ticket #2260) 3 10 -
router/java/src/net/i2p/router/RouterVersion.java
re33bb2a r93c6df7 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 2 1;21 public final static long BUILD = 22; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.