Changeset 3631efa
- Timestamp:
- Mar 1, 2017 4:41:19 PM (4 years ago)
- Branches:
- master
- Children:
- d3abbe8
- Parents:
- 8bfb3649
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/jetty/java/src/net/i2p/jetty/I2PRequestLog.java
r8bfb3649 r3631efa 81 81 private transient OutputStream _fileOut; 82 82 private transient DateCache _logDateCache; 83 private transient PathMap _ignorePathMap;83 private transient PathMap<String> _ignorePathMap; 84 84 private transient Writer _writer; 85 85 private transient ArrayList<Utf8StringBuilder> _buffers; … … 473 473 if (_ignorePaths != null && _ignorePaths.length > 0) 474 474 { 475 _ignorePathMap = new PathMap ();475 _ignorePathMap = new PathMap<String>(); 476 476 for (int i = 0; i < _ignorePaths.length; i++) 477 477 _ignorePathMap.put(_ignorePaths[i], _ignorePaths[i]); -
router/java/src/net/i2p/router/startup/WorkingDir.java
r8bfb3649 r3631efa 328 328 if (in != null) { 329 329 System.err.println("FAILED copy " + oldFile + ": " + ioe); 330 return false;331 330 } 332 331 return false; … … 366 365 if (in != null) { 367 366 System.err.println("FAILED copy " + oldFile + ": " + ioe); 368 return false;369 367 } 370 368 return false;
Note: See TracChangeset
for help on using the changeset viewer.