Loading apex/blobstore/service/java/com/android/server/blob/BlobStoreManagerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -334,7 +334,8 @@ public class BlobStoreManagerService extends SystemService { throw new SecurityException("Caller not allowed to access " + blobHandle + "; callingUid=" + callingUid + ", callingPackage=" + callingPackage); } if (leaseExpiryTimeMillis != 0 && leaseExpiryTimeMillis > blobHandle.expiryTimeMillis) { if (leaseExpiryTimeMillis != 0 && blobHandle.expiryTimeMillis != 0 && leaseExpiryTimeMillis > blobHandle.expiryTimeMillis) { throw new IllegalArgumentException( "Lease expiry cannot be later than blobs expiry time"); } Loading Loading
apex/blobstore/service/java/com/android/server/blob/BlobStoreManagerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -334,7 +334,8 @@ public class BlobStoreManagerService extends SystemService { throw new SecurityException("Caller not allowed to access " + blobHandle + "; callingUid=" + callingUid + ", callingPackage=" + callingPackage); } if (leaseExpiryTimeMillis != 0 && leaseExpiryTimeMillis > blobHandle.expiryTimeMillis) { if (leaseExpiryTimeMillis != 0 && blobHandle.expiryTimeMillis != 0 && leaseExpiryTimeMillis > blobHandle.expiryTimeMillis) { throw new IllegalArgumentException( "Lease expiry cannot be later than blobs expiry time"); } Loading