Loading services/java/com/android/server/ThrottleService.java +6 −1 Original line number Diff line number Diff line Loading @@ -900,7 +900,12 @@ public class ThrottleService extends IThrottleManager.Stub { dataFile = new File(throttleDir, imsiHash); } // touch the file so it's not LRU if (System.currentTimeMillis() >= 0) { dataFile.setLastModified(System.currentTimeMillis()); } else { // system clock is out of whack, but that doesn't mean we can't boot dataFile.setLastModified(Long.MAX_VALUE); } checkAndDeleteLRUDataFile(throttleDir); return dataFile; } Loading Loading
services/java/com/android/server/ThrottleService.java +6 −1 Original line number Diff line number Diff line Loading @@ -900,7 +900,12 @@ public class ThrottleService extends IThrottleManager.Stub { dataFile = new File(throttleDir, imsiHash); } // touch the file so it's not LRU if (System.currentTimeMillis() >= 0) { dataFile.setLastModified(System.currentTimeMillis()); } else { // system clock is out of whack, but that doesn't mean we can't boot dataFile.setLastModified(Long.MAX_VALUE); } checkAndDeleteLRUDataFile(throttleDir); return dataFile; } Loading