Changeset 380f55a
- Timestamp:
- Feb 15, 2017 5:48:47 PM (4 years ago)
- Branches:
- master
- Children:
- 3f452c5
- Parents:
- 8a89b3d
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/net/i2p/client/impl/I2PSessionImpl2.java
r8a89b3d r380f55a 324 324 return DataHelper.decompress(compressed); 325 325 } catch (IOException ioe) { 326 throw new I2PSessionException("Error decompressing message", ioe); 326 //throw new I2PSessionException("Error decompressing message", ioe); 327 if (_log.shouldWarn()) 328 _log.warn("Error decompressing message", ioe); 329 return null; 327 330 } 328 331 } -
history.txt
r8a89b3d r380f55a 1 1 2017-02-15 zzz 2 * Build: Fix calls to Class.newInstance() deprecated in Java 9 3 * I2CP: Return null on decompression failure instead of 4 throwing exception (ticket #1915) 2 5 * Utils: Disable caching of ResettableGZIPOutputStreams, 3 6 add more checks for compression failure, -
router/java/src/net/i2p/router/RouterVersion.java
r8a89b3d r380f55a 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 7;21 public final static long BUILD = 8; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.